-- MySQL dump 10.16  Distrib 10.2.25-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: abella9_wp604
-- ------------------------------------------------------
-- Server version	10.2.12-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 utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wpct_commentmeta`
--

DROP TABLE IF EXISTS `wpct_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_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 `wpct_commentmeta`
--

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

--
-- Table structure for table `wpct_comments`
--

DROP TABLE IF EXISTS `wpct_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_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)),
  KEY `woo_idx_comment_type` (`comment_type`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_comments`
--

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

--
-- Table structure for table `wpct_gglcptch_whitelist`
--

DROP TABLE IF EXISTS `wpct_gglcptch_whitelist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_gglcptch_whitelist` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ip` char(31) NOT NULL,
  `ip_from_int` bigint(20) DEFAULT NULL,
  `ip_to_int` bigint(20) DEFAULT NULL,
  `add_time` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ip` (`ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_gglcptch_whitelist`
--

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

--
-- Table structure for table `wpct_lead_form`
--

DROP TABLE IF EXISTS `wpct_lead_form`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_lead_form` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `form_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `form_data` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `date` datetime NOT NULL,
  `mail_setting` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `usermail_setting` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `multiData` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `form_skin` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default',
  `form_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'ACTIVE',
  `captcha_status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'OFF',
  `storeType` enum('1','2','3') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '2',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_lead_form`
--

LOCK TABLES `wpct_lead_form` WRITE;
/*!40000 ALTER TABLE `wpct_lead_form` DISABLE KEYS */;
INSERT INTO `wpct_lead_form` VALUES (1,'Contact Us','a:5:{s:12:\"form_field_1\";a:6:{s:10:\"field_name\";s:4:\"Name\";s:10:\"field_type\";a:1:{s:4:\"type\";s:4:\"name\";}s:13:\"default_value\";s:4:\"Name\";s:19:\"default_placeholder\";s:1:\"1\";s:11:\"is_required\";s:1:\"1\";s:8:\"field_id\";s:1:\"1\";}s:12:\"form_field_2\";a:6:{s:10:\"field_name\";s:5:\"Email\";s:10:\"field_type\";a:1:{s:4:\"type\";s:5:\"email\";}s:13:\"default_value\";s:5:\"Email\";s:19:\"default_placeholder\";s:1:\"1\";s:11:\"is_required\";s:1:\"1\";s:8:\"field_id\";s:1:\"2\";}s:12:\"form_field_3\";a:6:{s:10:\"field_name\";s:10:\"Contact No\";s:10:\"field_type\";a:1:{s:4:\"type\";s:6:\"number\";}s:13:\"default_value\";s:14:\"Contact number\";s:19:\"default_placeholder\";s:1:\"1\";s:11:\"is_required\";s:1:\"1\";s:8:\"field_id\";s:1:\"3\";}s:12:\"form_field_4\";a:6:{s:10:\"field_name\";s:7:\"Message\";s:10:\"field_type\";a:1:{s:4:\"type\";s:7:\"message\";}s:13:\"default_value\";s:7:\"Message\";s:19:\"default_placeholder\";s:1:\"1\";s:11:\"is_required\";s:1:\"1\";s:8:\"field_id\";s:1:\"4\";}s:12:\"form_field_0\";a:6:{s:10:\"field_name\";s:6:\"submit\";s:10:\"field_type\";a:1:{s:4:\"type\";s:6:\"submit\";}s:13:\"default_value\";s:0:\"\";s:19:\"default_placeholder\";s:1:\"0\";s:11:\"is_required\";s:1:\"1\";s:8:\"field_id\";s:1:\"0\";}}','2018-03-16 04:02:10','','','','default','ACTIVE','OFF','2');
/*!40000 ALTER TABLE `wpct_lead_form` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpct_lead_form_data`
--

DROP TABLE IF EXISTS `wpct_lead_form_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_lead_form_data` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `form_id` int(10) DEFAULT NULL,
  `form_data` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ip_address` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `server_request` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `date` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_lead_form_data`
--

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

--
-- Table structure for table `wpct_lead_form_extension`
--

DROP TABLE IF EXISTS `wpct_lead_form_extension`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_lead_form_extension` (
  `eid` int(10) NOT NULL AUTO_INCREMENT,
  `form_id` int(10) NOT NULL,
  `ext_api` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `ext_map` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `active` tinyint(4) NOT NULL DEFAULT 0,
  `ext_type` int(5) NOT NULL,
  `edate` datetime NOT NULL,
  PRIMARY KEY (`eid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_lead_form_extension`
--

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

--
-- Table structure for table `wpct_lead_form_options`
--

DROP TABLE IF EXISTS `wpct_lead_form_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_lead_form_options` (
  `fid` int(10) NOT NULL,
  `colorData` text COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`fid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_lead_form_options`
--

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

--
-- Table structure for table `wpct_links`
--

DROP TABLE IF EXISTS `wpct_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_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 `wpct_links`
--

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

--
-- Table structure for table `wpct_options`
--

DROP TABLE IF EXISTS `wpct_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_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=51756 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_options`
--

LOCK TABLES `wpct_options` WRITE;
/*!40000 ALTER TABLE `wpct_options` DISABLE KEYS */;
INSERT INTO `wpct_options` VALUES (1,'siteurl','http://moto-noto.com','yes'),(2,'home','http://moto-noto.com','yes'),(3,'blogname','Moto-Noto','yes'),(4,'blogdescription','Notary Services in the Greater Sarasota, FL Area','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','admin@moto-noto.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:208:{s:24:\"^wc-auth/v([1]{1})/(.*)?\";s:63:\"index.php?wc-auth-version=$matches[1]&wc-auth-route=$matches[2]\";s:22:\"^wc-api/v([1-3]{1})/?$\";s:51:\"index.php?wc-api-version=$matches[1]&wc-api-route=/\";s:24:\"^wc-api/v([1-3]{1})(.*)?\";s:61:\"index.php?wc-api-version=$matches[1]&wc-api-route=$matches[2]\";s:7:\"shop/?$\";s:27:\"index.php?post_type=product\";s:37:\"shop/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:32:\"shop/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=product&feed=$matches[1]\";s:24:\"shop/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=product&paged=$matches[1]\";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:32:\"category/(.+?)/wc-api(/(.*))?/?$\";s:54:\"index.php?category_name=$matches[1]&wc-api=$matches[3]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:29:\"tag/([^/]+)/wc-api(/(.*))?/?$\";s:44:\"index.php?tag=$matches[1]&wc-api=$matches[3]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:57:\"wpforms_log_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?wpforms_log_type=$matches[1]&feed=$matches[2]\";s:52:\"wpforms_log_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?wpforms_log_type=$matches[1]&feed=$matches[2]\";s:33:\"wpforms_log_type/([^/]+)/embed/?$\";s:49:\"index.php?wpforms_log_type=$matches[1]&embed=true\";s:45:\"wpforms_log_type/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?wpforms_log_type=$matches[1]&paged=$matches[2]\";s:27:\"wpforms_log_type/([^/]+)/?$\";s:38:\"index.php?wpforms_log_type=$matches[1]\";s:55:\"product-category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:50:\"product-category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_cat=$matches[1]&feed=$matches[2]\";s:31:\"product-category/(.+?)/embed/?$\";s:44:\"index.php?product_cat=$matches[1]&embed=true\";s:43:\"product-category/(.+?)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_cat=$matches[1]&paged=$matches[2]\";s:25:\"product-category/(.+?)/?$\";s:33:\"index.php?product_cat=$matches[1]\";s:52:\"product-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:47:\"product-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?product_tag=$matches[1]&feed=$matches[2]\";s:28:\"product-tag/([^/]+)/embed/?$\";s:44:\"index.php?product_tag=$matches[1]&embed=true\";s:40:\"product-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?product_tag=$matches[1]&paged=$matches[2]\";s:22:\"product-tag/([^/]+)/?$\";s:33:\"index.php?product_tag=$matches[1]\";s:35:\"product/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"product/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"product/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"product/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"product/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"product/([^/]+)/embed/?$\";s:40:\"index.php?product=$matches[1]&embed=true\";s:28:\"product/([^/]+)/trackback/?$\";s:34:\"index.php?product=$matches[1]&tb=1\";s:48:\"product/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:43:\"product/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?product=$matches[1]&feed=$matches[2]\";s:36:\"product/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&paged=$matches[2]\";s:43:\"product/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?product=$matches[1]&cpage=$matches[2]\";s:33:\"product/([^/]+)/wc-api(/(.*))?/?$\";s:48:\"index.php?product=$matches[1]&wc-api=$matches[3]\";s:39:\"product/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:50:\"product/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:32:\"product/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?product=$matches[1]&page=$matches[2]\";s:24:\"product/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"product/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"product/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"product/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"product/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"amn_wpforms-lite/([^/]+)/embed/?$\";s:49:\"index.php?amn_wpforms-lite=$matches[1]&embed=true\";s:37:\"amn_wpforms-lite/([^/]+)/trackback/?$\";s:43:\"index.php?amn_wpforms-lite=$matches[1]&tb=1\";s:45:\"amn_wpforms-lite/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?amn_wpforms-lite=$matches[1]&paged=$matches[2]\";s:52:\"amn_wpforms-lite/([^/]+)/comment-page-([0-9]{1,})/?$\";s:56:\"index.php?amn_wpforms-lite=$matches[1]&cpage=$matches[2]\";s:42:\"amn_wpforms-lite/([^/]+)/wc-api(/(.*))?/?$\";s:57:\"index.php?amn_wpforms-lite=$matches[1]&wc-api=$matches[3]\";s:48:\"amn_wpforms-lite/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:59:\"amn_wpforms-lite/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:41:\"amn_wpforms-lite/([^/]+)(?:/([0-9]+))?/?$\";s:55:\"index.php?amn_wpforms-lite=$matches[1]&page=$matches[2]\";s:33:\"amn_wpforms-lite/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"amn_wpforms-lite/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"amn_wpforms-lite/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"amn_wpforms-lite/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"amn_wpforms-lite/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"amn_wpforms-lite/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:39:\"testimonial/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"testimonial/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"testimonial/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"testimonial/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"testimonial/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"testimonial/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"testimonial/([^/]+)/embed/?$\";s:48:\"index.php?wpm-testimonial=$matches[1]&embed=true\";s:32:\"testimonial/([^/]+)/trackback/?$\";s:42:\"index.php?wpm-testimonial=$matches[1]&tb=1\";s:40:\"testimonial/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?wpm-testimonial=$matches[1]&paged=$matches[2]\";s:47:\"testimonial/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?wpm-testimonial=$matches[1]&cpage=$matches[2]\";s:37:\"testimonial/([^/]+)/wc-api(/(.*))?/?$\";s:56:\"index.php?wpm-testimonial=$matches[1]&wc-api=$matches[3]\";s:43:\"testimonial/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:54:\"testimonial/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:36:\"testimonial/([^/]+)(?:/([0-9]+))?/?$\";s:54:\"index.php?wpm-testimonial=$matches[1]&page=$matches[2]\";s:28:\"testimonial/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"testimonial/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"testimonial/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"testimonial/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"testimonial/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"testimonial/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:61:\"testimonial-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?wpm-testimonial-category=$matches[1]&feed=$matches[2]\";s:56:\"testimonial-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?wpm-testimonial-category=$matches[1]&feed=$matches[2]\";s:37:\"testimonial-category/([^/]+)/embed/?$\";s:57:\"index.php?wpm-testimonial-category=$matches[1]&embed=true\";s:49:\"testimonial-category/([^/]+)/page/?([0-9]{1,})/?$\";s:64:\"index.php?wpm-testimonial-category=$matches[1]&paged=$matches[2]\";s:31:\"testimonial-category/([^/]+)/?$\";s:46:\"index.php?wpm-testimonial-category=$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:39:\"index.php?&page_id=13&cpage=$matches[1]\";s:17:\"wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:26:\"comments/wc-api(/(.*))?/?$\";s:29:\"index.php?&wc-api=$matches[2]\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:29:\"search/(.+)/wc-api(/(.*))?/?$\";s:42:\"index.php?s=$matches[1]&wc-api=$matches[3]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:32:\"author/([^/]+)/wc-api(/(.*))?/?$\";s:52:\"index.php?author_name=$matches[1]&wc-api=$matches[3]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:54:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&wc-api=$matches[5]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:41:\"([0-9]{4})/([0-9]{1,2})/wc-api(/(.*))?/?$\";s:66:\"index.php?year=$matches[1]&monthnum=$matches[2]&wc-api=$matches[4]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:28:\"([0-9]{4})/wc-api(/(.*))?/?$\";s:45:\"index.php?year=$matches[1]&wc-api=$matches[3]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:62:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/wc-api(/(.*))?/?$\";s:99:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&wc-api=$matches[6]\";s:62:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:73:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:25:\"(.?.+?)/wc-api(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&wc-api=$matches[3]\";s:28:\"(.?.+?)/order-pay(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&order-pay=$matches[3]\";s:33:\"(.?.+?)/order-received(/(.*))?/?$\";s:57:\"index.php?pagename=$matches[1]&order-received=$matches[3]\";s:25:\"(.?.+?)/orders(/(.*))?/?$\";s:49:\"index.php?pagename=$matches[1]&orders=$matches[3]\";s:29:\"(.?.+?)/view-order(/(.*))?/?$\";s:53:\"index.php?pagename=$matches[1]&view-order=$matches[3]\";s:28:\"(.?.+?)/downloads(/(.*))?/?$\";s:52:\"index.php?pagename=$matches[1]&downloads=$matches[3]\";s:31:\"(.?.+?)/edit-account(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-account=$matches[3]\";s:31:\"(.?.+?)/edit-address(/(.*))?/?$\";s:55:\"index.php?pagename=$matches[1]&edit-address=$matches[3]\";s:34:\"(.?.+?)/payment-methods(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&payment-methods=$matches[3]\";s:32:\"(.?.+?)/lost-password(/(.*))?/?$\";s:56:\"index.php?pagename=$matches[1]&lost-password=$matches[3]\";s:34:\"(.?.+?)/customer-logout(/(.*))?/?$\";s:58:\"index.php?pagename=$matches[1]&customer-logout=$matches[3]\";s:37:\"(.?.+?)/add-payment-method(/(.*))?/?$\";s:61:\"index.php?pagename=$matches[1]&add-payment-method=$matches[3]\";s:40:\"(.?.+?)/delete-payment-method(/(.*))?/?$\";s:64:\"index.php?pagename=$matches[1]&delete-payment-method=$matches[3]\";s:45:\"(.?.+?)/set-default-payment-method(/(.*))?/?$\";s:69:\"index.php?pagename=$matches[1]&set-default-payment-method=$matches[3]\";s:31:\".?.+?/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:42:\".?.+?/attachment/([^/]+)/wc-api(/(.*))?/?$\";s:51:\"index.php?attachment=$matches[1]&wc-api=$matches[3]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:9:{i:0;s:23:\"elementor/elementor.php\";i:1;s:33:\"google-captcha/google-captcha.php\";i:2;s:51:\"header-footer-elementor/header-footer-elementor.php\";i:3;s:39:\"lead-form-builder/lead-form-builder.php\";i:4;s:43:\"strong-testimonials/strong-testimonials.php\";i:5;s:45:\"themehunk-customizer/themehunk-customizer.php\";i:6;s:37:\"user-role-editor/user-role-editor.php\";i:7;s:27:\"woocommerce/woocommerce.php\";i:8;s:24:\"wpforms-lite/wpforms.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','a:5:{i:0;s:81:\"/home/abella9/moto-noto.com/wp-content/uploads/bws-custom-code/bws-custom-code.js\";i:1;s:82:\"/home/abella9/moto-noto.com/wp-content/uploads/bws-custom-code/bws-custom-code.php\";i:2;s:82:\"/home/abella9/moto-noto.com/wp-content/uploads/bws-custom-code/bws-custom-code.css\";i:3;s:75:\"/home/abella9/moto-noto.com/wp-content/themes/twentyfifteen/js/functions.js\";i:4;s:71:\"/home/abella9/moto-noto.com/wp-content/themes/twentyfifteen/content.php\";}','no'),(40,'template','twentyfifteen','yes'),(41,'stylesheet','twentyfifteen','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','38590','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:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:5:{i:2;a:4:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:168:\"<strong>Address</strong>\n123 Main Street\nNew York, NY 10001\n\n<strong>Hours</strong>\nMonday&mdash;Friday: 9:00AM&ndash;5:00PM\nSaturday &amp; Sunday: 11:00AM&ndash;3:00PM\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:3;a:4:{s:5:\"title\";s:15:\"About This Site\";s:4:\"text\";s:85:\"This may be a good place to introduce yourself and your site or include some credits.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:4;a:4:{s:5:\"title\";s:7:\"Find Us\";s:4:\"text\";s:168:\"<strong>Address</strong>\n123 Main Street\nNew York, NY 10001\n\n<strong>Hours</strong>\nMonday&mdash;Friday: 9:00AM&ndash;5:00PM\nSaturday &amp; Sunday: 11:00AM&ndash;3:00PM\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:5;a:4:{s:5:\"title\";s:15:\"About This Site\";s:4:\"text\";s:85:\"This may be a good place to introduce yourself and your site or include some credits.\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:1:{s:33:\"google-captcha/google-captcha.php\";s:23:\"gglcptch_delete_options\";}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','13','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','216','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wpct_user_roles','a:9:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:126:{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:11:\"lfb_manager\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:25:\"strong_testimonials_views\";b:1;s:26:\"strong_testimonials_fields\";b:1;s:27:\"strong_testimonials_options\";b:1;s:25:\"strong_testimonials_about\";b:1;s:14:\"ure_edit_roles\";b:1;s:16:\"ure_create_roles\";b:1;s:16:\"ure_delete_roles\";b:1;s:23:\"ure_create_capabilities\";b:1;s:23:\"ure_delete_capabilities\";b:1;s:18:\"ure_manage_options\";b:1;s:15:\"ure_reset_roles\";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:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";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:8:\"lfb_role\";a:2:{s:4:\"name\";s:8:\"LFB Role\";s:12:\"capabilities\";a:3:{s:7:\"level_9\";b:1;s:4:\"read\";b:1;s:11:\"lfb_manager\";b:1;}}s:6:\"client\";a:2:{s:4:\"name\";s:5:\"Lorna\";s:12:\"capabilities\";a:13:{s:12:\"create_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:12:\"delete_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:10:\"edit_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:7:\"level_0\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:18:\"read_private_posts\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{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:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";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'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:6:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";i:2;s:6:\"text-4\";i:3;s:6:\"text-5\";i:4;s:13:\"custom_html-3\";}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\";}s:20:\"multi-service-widget\";a:0:{}s:17:\"multi-team-widget\";a:0:{}s:18:\"testimonial-widget\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_custom_html','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:2:{s:5:\"title\";s:0:\"\";s:7:\"content\";s:795:\"<div class=\"row\" style=\"padding-top: 20px; padding-bottom: 62px;\">\r\n<div class=\"col-md-3 col-sm-6 col-xs-12\">\r\n<div style=\"padding: 1.5em 2em; margin-top: 14px; margin-bottom: 14px;\" class=\"bg-box bg-box-rounded-bottom-left bg-box-rounded-top-right color3-text-default color3-background-color\">\r\n<h4 class=\"\"><img class=\"bg-img bg-img-circle aligncenter wp-image-117\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBonded-300x300.jpg\" alt=\"\" width=\"160\" height=\"160\" data-imhwpb-asset-id=\"695291\"></h4>\r\n<h4 class=\"bg-text-fx bg-text-fx-inset-text color2-color\" style=\"text-align: center;\">&nbsp;Notary</h4>\r\n<p class=\"\" style=\"text-align: center;\">I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>\r\n\r\n</div>\r\n</div>\";}}','yes'),(109,'cron','a:11:{i:1552792112;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:1552792178;a:1:{s:32:\"woocommerce_cancel_unpaid_orders\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1552795336;a:1:{s:28:\"woocommerce_cleanup_sessions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1552795859;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:1552828876;a:1:{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;}}}i:1552828877;a:2:{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:1552838536;a:1:{s:30:\"woocommerce_tracker_send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1552867200;a:1:{s:27:\"woocommerce_scheduled_sales\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1552872128;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:1554336000;a:1:{s:25:\"woocommerce_geoip_updater\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2635200;}}}s:7:\"version\";i:2;}','yes'),(110,'theme_mods_twentyseventeen','a:3:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1521218450;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:6:\"text-2\";i:1;s:6:\"text-3\";i:2;s:6:\"text-4\";i:3;s:6:\"text-5\";i:4;s:13:\"custom_html-3\";}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\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:20:\"multi-service-widget\";a:0:{}s:17:\"multi-team-widget\";a:0:{}s:18:\"testimonial-widget\";a:0:{}}}s:18:\"nav_menu_locations\";a:0:{}}','yes'),(212,'woocommerce_default_customer_address','geolocation','yes'),(160,'widget_th-multifeature-column-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(161,'category_children','a:0:{}','yes'),(167,'_transient_twentyseventeen_categories','1','yes'),(168,'current_theme','Twenty Fifteen','yes'),(169,'theme_switched','','yes'),(170,'theme_switched_via_customizer','','yes'),(122,'wpforms_shareasale_id','1587694','yes'),(120,'smm_version','1.3.1','yes'),(121,'disable_smm','0','yes'),(123,'widget_wpforms-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(124,'_amn_wpforms-lite_last_checked','1538697600','yes'),(128,'wpforms_review','a:2:{s:4:\"time\";i:1521076929;s:9:\"dismissed\";b:0;}','yes'),(129,'wpforms_activated','a:1:{s:4:\"lite\";i:1521076929;}','yes'),(1455,'elementor_tracker_notice','1','yes'),(1548,'user_role_editor','a:2:{s:11:\"ure_version\";s:6:\"4.40.1\";s:19:\"ure_hide_pro_banner\";i:1;}','yes'),(1549,'wpct_backup_user_roles','a:8:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:119:{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:11:\"lfb_manager\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:25:\"strong_testimonials_views\";b:1;s:26:\"strong_testimonials_fields\";b:1;s:27:\"strong_testimonials_options\";b:1;s:25:\"strong_testimonials_about\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"lfb_role\";a:2:{s:4:\"name\";s:8:\"LFB Role\";s:12:\"capabilities\";a:3:{s:7:\"level_9\";b:1;s:4:\"read\";b:1;s:11:\"lfb_manager\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{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:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}}','no'),(1550,'ure_tasks_queue','a:0:{}','yes'),(1555,'ure_role_additional_options_values','a:1:{s:6:\"client\";a:1:{s:14:\"hide_admin_bar\";i:1;}}','yes'),(22334,'_transient_twentyfifteen_categories','1','yes'),(22489,'_transient_is_multi_author','0','yes'),(50457,'_transient_timeout_external_ip_address_163.44.193.95','1552785925','no'),(50497,'_transient_timeout_external_ip_address_35.204.237.80','1552789958','no'),(50498,'_transient_external_ip_address_35.204.237.80','198.46.81.37','no'),(50499,'_transient_timeout_external_ip_address_68.183.45.232','1552790144','no'),(50500,'_transient_external_ip_address_68.183.45.232','198.46.81.37','no'),(50501,'_transient_timeout_external_ip_address_39.105.218.213','1552790875','no'),(50502,'_transient_external_ip_address_39.105.218.213','198.46.81.37','no'),(50503,'_transient_timeout_external_ip_address_150.95.25.26','1552791027','no'),(50504,'_transient_external_ip_address_150.95.25.26','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50505,'_transient_timeout_external_ip_address_118.69.175.53','1552791251','no'),(50506,'_transient_external_ip_address_118.69.175.53','198.46.81.37','no'),(50507,'_transient_timeout_external_ip_address_138.68.93.121','1552791306','no'),(50508,'_transient_external_ip_address_138.68.93.121','198.46.81.37','no'),(50509,'_transient_timeout_external_ip_address_123.29.75.131','1552791548','no'),(50510,'_transient_external_ip_address_123.29.75.131','198.46.81.37','no'),(50513,'_transient_timeout_external_ip_address_211.198.225.81','1552791601','no'),(50514,'_transient_external_ip_address_211.198.225.81','198.46.81.37','no'),(50515,'_transient_timeout_external_ip_address_159.65.93.123','1552791816','no'),(50516,'_transient_external_ip_address_159.65.93.123','198.46.81.37','no'),(50517,'_transient_timeout_external_ip_address_188.165.254.63','1552791887','no'),(50518,'_transient_external_ip_address_188.165.254.63','198.46.81.37','no'),(50519,'_transient_timeout_external_ip_address_52.63.26.180','1552791925','no'),(50520,'_transient_external_ip_address_52.63.26.180','198.46.81.37','no'),(50521,'_transient_timeout_external_ip_address_4.78.193.138','1552792078','no'),(50522,'_transient_external_ip_address_4.78.193.138','198.46.81.37','no'),(50524,'_transient_timeout_external_ip_address_31.128.78.221','1552792254','no'),(50525,'_transient_external_ip_address_31.128.78.221','198.46.81.37','no'),(50529,'_transient_timeout_external_ip_address_178.128.97.206','1552792532','no'),(50527,'_transient_timeout_external_ip_address_118.70.4.20','1552792275','no'),(50528,'_transient_external_ip_address_118.70.4.20','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50530,'_transient_external_ip_address_178.128.97.206','198.46.81.37','no'),(50531,'_transient_timeout_external_ip_address_142.93.248.114','1552792711','no'),(50532,'_transient_external_ip_address_142.93.248.114','198.46.81.37','no'),(50533,'_transient_timeout_external_ip_address_207.38.86.25','1552792767','no'),(50534,'_transient_external_ip_address_207.38.86.25','198.46.81.37','no'),(50535,'_transient_timeout_external_ip_address_199.247.28.146','1552792982','no'),(50536,'_transient_external_ip_address_199.247.28.146','198.46.81.37','no'),(50537,'_transient_timeout_external_ip_address_159.203.65.2','1552793343','no'),(50538,'_transient_external_ip_address_159.203.65.2','198.46.81.37','no'),(50541,'_transient_timeout_external_ip_address_147.135.130.69','1552793691','no'),(50542,'_transient_external_ip_address_147.135.130.69','198.46.81.37','no'),(50543,'_transient_timeout_external_ip_address_68.183.238.162','1552793973','no'),(50544,'_transient_external_ip_address_68.183.238.162','198.46.81.37','no'),(50545,'_transient_timeout_external_ip_address_95.128.164.11','1552794532','no'),(50546,'_transient_external_ip_address_95.128.164.11','198.46.81.37','no'),(50547,'_transient_timeout_external_ip_address_80.240.30.26','1552794925','no'),(50548,'_transient_external_ip_address_80.240.30.26','198.46.81.37','no'),(50552,'_transient_timeout_external_ip_address_109.70.100.26','1552795470','no'),(50553,'_transient_external_ip_address_109.70.100.26','198.46.81.37','no'),(50554,'_transient_timeout_external_ip_address_159.65.56.126','1552795501','no'),(50555,'_transient_external_ip_address_159.65.56.126','198.46.81.37','no'),(50556,'_transient_timeout_external_ip_address_14.192.208.244','1552795509','no'),(50557,'_transient_external_ip_address_14.192.208.244','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50560,'_transient_timeout_external_ip_address_24.37.147.254','1552795830','no'),(50561,'_transient_external_ip_address_24.37.147.254','198.46.81.37','no'),(50563,'_transient_timeout_external_ip_address_128.199.226.187','1552796032','no'),(50564,'_transient_external_ip_address_128.199.226.187','198.46.81.37','no'),(50565,'_transient_timeout_external_ip_address_82.223.50.52','1552796124','no'),(50566,'_transient_external_ip_address_82.223.50.52','198.46.81.37','no'),(50567,'_transient_timeout_external_ip_address_194.36.84.21','1552796356','no'),(50568,'_transient_external_ip_address_194.36.84.21','198.46.81.37','no'),(50569,'_transient_timeout_external_ip_address_134.209.22.173','1552796575','no'),(50570,'_transient_external_ip_address_134.209.22.173','198.46.81.37','no'),(50571,'_transient_timeout_external_ip_address_178.128.245.119','1552796724','no'),(50572,'_transient_external_ip_address_178.128.245.119','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50573,'_transient_timeout_external_ip_address_64.50.173.110','1552796827','no'),(50574,'_transient_external_ip_address_64.50.173.110','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50575,'_transient_timeout_external_ip_address_122.114.245.21','1552796860','no'),(50576,'_transient_external_ip_address_122.114.245.21','198.46.81.37','no'),(50583,'_transient_timeout_external_ip_address_157.112.176.28','1552797590','no'),(50584,'_transient_external_ip_address_157.112.176.28','198.46.81.37','no'),(50585,'_transient_timeout_external_ip_address_45.119.80.34','1552797613','no'),(50586,'_transient_external_ip_address_45.119.80.34','198.46.81.37','no'),(50589,'_transient_timeout_external_ip_address_18.236.132.4','1552798950','no'),(50590,'_transient_external_ip_address_18.236.132.4','198.46.81.37','no'),(50591,'_transient_timeout_external_ip_address_115.124.99.124','1552798985','no'),(50592,'_transient_external_ip_address_115.124.99.124','198.46.81.37','no'),(50593,'_transient_timeout_external_ip_address_177.69.35.6','1552799206','no'),(50594,'_transient_external_ip_address_177.69.35.6','198.46.81.37','no'),(50595,'_transient_timeout_external_ip_address_35.198.203.184','1552799381','no'),(50596,'_transient_external_ip_address_35.198.203.184','198.46.81.37','no'),(50598,'_transient_timeout_external_ip_address_223.27.48.236','1552799626','no'),(50599,'_transient_external_ip_address_223.27.48.236','198.46.81.37','no'),(50600,'_transient_timeout_external_ip_address_139.59.102.28','1552799909','no'),(50601,'_transient_external_ip_address_139.59.102.28','198.46.81.37','no'),(50602,'_transient_timeout_external_ip_address_45.76.183.233','1552800258','no'),(50603,'_transient_external_ip_address_45.76.183.233','198.46.81.37','no'),(50604,'_transient_timeout_external_ip_address_37.59.14.72','1552800417','no'),(50605,'_transient_external_ip_address_37.59.14.72','198.46.81.37','no'),(50608,'_transient_timeout_external_ip_address_207.180.244.235','1552800965','no'),(50609,'_transient_external_ip_address_207.180.244.235','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50610,'_transient_timeout_external_ip_address_128.199.171.225','1552800990','no'),(50611,'_transient_external_ip_address_128.199.171.225','198.46.81.37','no'),(50612,'_transient_timeout_external_ip_address_115.68.187.140','1552802071','no'),(50613,'_transient_external_ip_address_115.68.187.140','198.46.81.37','no'),(50614,'_transient_timeout_external_ip_address_113.23.212.4','1552802455','no'),(50615,'_transient_external_ip_address_113.23.212.4','198.46.81.37','no'),(50616,'_transient_timeout_external_ip_address_138.197.34.35','1552802784','no'),(50617,'_transient_external_ip_address_138.197.34.35','198.46.81.37','no'),(50620,'_transient_timeout_external_ip_address_178.128.32.250','1552803301','no'),(50621,'_transient_external_ip_address_178.128.32.250','198.46.81.37','no'),(50627,'_transient_timeout_external_ip_address_175.126.62.28','1552805624','no'),(50623,'_transient_timeout_external_ip_address_159.203.131.94','1552803314','no'),(50624,'_transient_external_ip_address_159.203.131.94','198.46.81.37','no'),(50628,'_transient_external_ip_address_175.126.62.28','198.46.81.37','no'),(50671,'_transient_timeout_external_ip_address_217.61.97.229','1552899422','no'),(50630,'_transient_timeout_external_ip_address_45.119.82.122','1552806845','no'),(50631,'_transient_external_ip_address_45.119.82.122','198.46.81.37','no'),(50648,'_transient_timeout_external_ip_address_92.247.27.6','1552832295','no'),(50649,'_transient_external_ip_address_92.247.27.6','198.46.81.37','no'),(51659,'_transient_external_ip_address_151.80.100.147','198.46.81.37','no'),(51660,'_transient_timeout_external_ip_address_182.84.62.248','1553347387','no'),(51661,'_transient_external_ip_address_182.84.62.248','198.46.81.37','no'),(51626,'_transient_external_ip_address_158.69.243.5','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51665,'_transient_timeout_external_ip_address_178.17.174.229','1553348374','no'),(51658,'_transient_timeout_external_ip_address_151.80.100.147','1553347387','no'),(51654,'_transient_external_ip_address_153.120.181.188','198.46.81.37','no'),(51655,'_transient_timeout_external_ip_address_118.27.17.135','1553347386','no'),(51656,'_transient_external_ip_address_118.27.17.135','198.46.81.37','no'),(50680,'_transient_timeout_external_ip_address_172.58.175.184','1552908613','no'),(51651,'_transient_timeout_external_ip_address_109.70.100.22','1553346843','no'),(51652,'_transient_external_ip_address_109.70.100.22','198.46.81.37','no'),(51653,'_transient_timeout_external_ip_address_153.120.181.188','1553346866','no'),(51632,'_transient_timeout_external_ip_address_109.70.100.23','1553337565','no'),(51633,'_transient_external_ip_address_109.70.100.23','198.46.81.37','no'),(51639,'_transient_timeout_external_ip_address_89.234.157.254','1553344057','no'),(51637,'_transient_timeout_external_ip_address_94.102.9.16','1553340216','no'),(51638,'_transient_external_ip_address_94.102.9.16','198.46.81.37','no'),(51640,'_transient_external_ip_address_89.234.157.254','198.46.81.37','no'),(51646,'_transient_timeout_external_ip_address_199.249.230.80','1553346821','no'),(51644,'_transient_timeout_external_ip_address_89.221.80.5','1553344907','no'),(51645,'_transient_external_ip_address_89.221.80.5','198.46.81.37','no'),(51647,'_transient_external_ip_address_199.249.230.80','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51331,'_transient_timeout_external_ip_address_167.114.209.38','1553224260','no'),(51252,'_transient_external_ip_address_34.220.101.33','198.46.81.37','no'),(51268,'_transient_timeout_external_ip_address_54.71.71.57','1553195546','no'),(51246,'_transient_external_ip_address_95.79.169.135','198.46.81.37','no'),(51251,'_transient_timeout_external_ip_address_34.220.101.33','1553185248','no'),(50939,'_transient_timeout_external_ip_address_162.144.40.74','1553049812','no'),(50955,'_transient_timeout_external_ip_address_31.184.238.236','1553054453','no'),(50956,'_transient_external_ip_address_31.184.238.236','198.46.81.37','no'),(50940,'_transient_external_ip_address_162.144.40.74','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50931,'_transient_timeout_external_ip_address_61.160.247.137','1553047722','no'),(50932,'_transient_external_ip_address_61.160.247.137','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50929,'_transient_external_ip_address_195.242.80.50','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50924,'_transient_external_ip_address_151.80.246.221','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50928,'_transient_timeout_external_ip_address_195.242.80.50','1553044048','no'),(50915,'_transient_external_ip_address_36.89.171.243','198.46.81.37','no'),(50923,'_transient_timeout_external_ip_address_151.80.246.221','1553042876','no'),(50910,'_transient_external_ip_address_212.83.145.58','198.46.81.37','no'),(50880,'_transient_external_ip_address_85.238.103.39','198.46.81.37','no'),(50909,'_transient_timeout_external_ip_address_212.83.145.58','1553032250','no'),(50914,'_transient_timeout_external_ip_address_36.89.171.243','1553035320','no'),(50872,'_transient_timeout_external_ip_address_52.53.201.78','1553009835','no'),(50873,'_transient_external_ip_address_52.53.201.78','198.46.81.37','no'),(50861,'_transient_external_ip_address_39.98.70.15','198.46.81.37','no'),(50879,'_transient_timeout_external_ip_address_85.238.103.39','1553013917','no'),(50870,'_transient_timeout_external_ip_address_45.7.134.67','1553009809','no'),(50871,'_transient_external_ip_address_45.7.134.67','198.46.81.37','no'),(50853,'_transient_timeout_external_ip_address_5.188.210.44','1553002325','no'),(50854,'_transient_external_ip_address_5.188.210.44','198.46.81.37','no'),(50860,'_transient_timeout_external_ip_address_39.98.70.15','1553003873','no'),(50817,'_transient_timeout_external_ip_address_39.98.71.133','1552987495','no'),(50818,'_transient_external_ip_address_39.98.71.133','198.46.81.37','no'),(50822,'_transient_timeout_external_ip_address_82.54.155.232','1552988881','no'),(50823,'_transient_external_ip_address_82.54.155.232','198.46.81.37','no'),(50827,'_transient_timeout_external_ip_address_45.76.144.68','1552991177','no'),(50828,'_transient_external_ip_address_45.76.144.68','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50834,'_transient_timeout_external_ip_address_1.10.186.153','1552993160','no'),(50830,'_transient_timeout_external_ip_address_118.68.170.130','1552992428','no'),(50831,'_transient_external_ip_address_118.68.170.130','198.46.81.37','no'),(50835,'_transient_external_ip_address_1.10.186.153','198.46.81.37','no'),(50839,'_transient_timeout_external_ip_address_197.231.221.211','1552995432','no'),(50840,'_transient_external_ip_address_197.231.221.211','198.46.81.37','no'),(50841,'_transient_timeout_external_ip_address_51.15.59.9','1552995462','no'),(50842,'_transient_external_ip_address_51.15.59.9','198.46.81.37','no'),(50843,'_transient_timeout_external_ip_address_195.211.161.91','1552995484','no'),(50844,'_transient_external_ip_address_195.211.161.91','198.46.81.37','no'),(50845,'_transient_timeout_external_ip_address_185.130.184.216','1552995896','no'),(51245,'_transient_timeout_external_ip_address_95.79.169.135','1553183782','no'),(51241,'_transient_timeout_external_ip_address_213.152.162.104','1553182394','no'),(51176,'_transient_timeout_external_ip_address_109.232.227.133','1553156716','no'),(51177,'_transient_external_ip_address_109.232.227.133','198.46.81.37','no'),(51181,'_transient_timeout_external_ip_address_103.90.228.124','1553157020','no'),(51182,'_transient_external_ip_address_103.90.228.124','198.46.81.37','no'),(51191,'_transient_timeout_external_ip_address_209.124.74.29','1553164253','no'),(51192,'_transient_external_ip_address_209.124.74.29','198.46.81.37','no'),(51193,'_transient_timeout_external_ip_address_210.193.3.166','1553164713','no'),(51194,'_transient_external_ip_address_210.193.3.166','198.46.81.37','no'),(51195,'_transient_timeout_external_ip_address_77.247.181.162','1553164992','no'),(51196,'_transient_external_ip_address_77.247.181.162','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51206,'_transient_timeout_external_ip_address_213.152.162.84','1553170671','no'),(51207,'_transient_external_ip_address_213.152.162.84','198.46.81.37','no'),(51209,'_transient_timeout_external_ip_address_104.238.83.234','1553171895','no'),(51210,'_transient_external_ip_address_104.238.83.234','198.46.81.37','no'),(51214,'_transient_timeout_external_ip_address_18.237.34.3','1553173980','no'),(51215,'_transient_external_ip_address_18.237.34.3','198.46.81.37','no'),(51216,'_transient_timeout_external_ip_address_54.201.75.1','1553173981','no'),(51217,'_transient_external_ip_address_54.201.75.1','198.46.81.37','no'),(51224,'_transient_timeout_external_ip_address_67.217.35.167','1553174700','no'),(51225,'_transient_external_ip_address_67.217.35.167','198.46.81.37','no'),(50810,'_transient_timeout_external_ip_address_104.238.248.15','1552985682','no'),(50811,'_transient_external_ip_address_104.238.248.15','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50814,'_transient_timeout_external_ip_address_91.92.136.13','1552986792','no'),(50815,'_transient_external_ip_address_91.92.136.13','198.46.81.37','no'),(50786,'_transient_timeout_external_ip_address_18.236.127.177','1552968362','no'),(50787,'_transient_external_ip_address_18.236.127.177','198.46.81.37','no'),(50805,'_transient_timeout_external_ip_address_54.39.100.61','1552982212','no'),(50806,'_transient_external_ip_address_54.39.100.61','198.46.81.37','no'),(51274,'_transient_external_ip_address_103.72.163.150','198.46.81.37','no'),(51280,'_transient_timeout_external_ip_address_103.59.156.16','1553199162','no'),(51281,'_transient_external_ip_address_103.59.156.16','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51174,'_transient_timeout_external_ip_address_49.206.244.43','1553155221','no'),(51175,'_transient_external_ip_address_49.206.244.43','198.46.81.37','no'),(51166,'_transient_timeout_external_ip_address_13.57.233.99','1553151204','no'),(51167,'_transient_external_ip_address_13.57.233.99','198.46.81.37','no'),(51161,'_transient_timeout_external_ip_address_51.77.109.127','1553148929','no'),(51162,'_transient_external_ip_address_51.77.109.127','198.46.81.37','no'),(51157,'_transient_timeout_external_ip_address_10.240.255.107','1553146910','no'),(51158,'_transient_external_ip_address_10.240.255.107','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51147,'_transient_external_ip_address_204.93.159.42','198.46.81.37','no'),(50900,'_transient_timeout_external_ip_address_31.184.238.234','1553027891','no'),(50901,'_transient_external_ip_address_31.184.238.234','198.46.81.37','no'),(51311,'_transient_external_ip_address_94.73.150.117','198.46.81.37','no'),(51325,'_transient_timeout_external_ip_address_178.128.233.222','1553221605','no'),(50904,'_transient_timeout_external_ip_address_31.184.238.90','1553029420','no'),(50905,'_transient_external_ip_address_31.184.238.90','198.46.81.37','no'),(50907,'_transient_timeout_external_ip_address_31.184.238.198','1553030575','no'),(50908,'_transient_external_ip_address_31.184.238.198','198.46.81.37','no'),(51300,'_transient_external_ip_address_103.28.53.243','198.46.81.37','no'),(51310,'_transient_timeout_external_ip_address_94.73.150.117','1553216517','no'),(51299,'_transient_timeout_external_ip_address_103.28.53.243','1553209916','no'),(51285,'_transient_timeout_external_ip_address_54.201.52.14','1553201450','no'),(51286,'_transient_external_ip_address_54.201.52.14','198.46.81.37','no'),(50951,'_transient_timeout_external_ip_address_31.184.238.78','1553052483','no'),(50952,'_transient_external_ip_address_31.184.238.78','198.46.81.37','no'),(51144,'_transient_timeout_external_ip_address_91.206.14.10','1553136912','no'),(51145,'_transient_external_ip_address_91.206.14.10','198.46.81.37','no'),(51146,'_transient_timeout_external_ip_address_204.93.159.42','1553139009','no'),(51080,'_transient_timeout_external_ip_address_190.10.10.186','1553109668','no'),(51081,'_transient_external_ip_address_190.10.10.186','198.46.81.37','no'),(51143,'_transient_external_ip_address_117.2.46.21','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51269,'_transient_external_ip_address_54.71.71.57','198.46.81.37','no'),(51273,'_transient_timeout_external_ip_address_103.72.163.150','1553196655','no'),(51271,'_transient_timeout_external_ip_address_52.89.0.162','1553195546','no'),(51141,'_transient_external_ip_address_85.214.46.252','198.46.81.37','no'),(51130,'_transient_external_ip_address_178.62.174.174','198.46.81.37','no'),(51140,'_transient_timeout_external_ip_address_85.214.46.252','1553136749','no'),(51235,'_transient_timeout_external_ip_address_70.35.207.236','1553179758','no'),(51236,'_transient_external_ip_address_70.35.207.236','198.46.81.37','no'),(51242,'_transient_external_ip_address_213.152.162.104','198.46.81.37','no'),(50948,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:3:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";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:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";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:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.0.4.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.0.4.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.0.4-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.0.4-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.0.4\";s:7:\"version\";s:5:\"5.0.4\";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:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1552785903;s:15:\"version_checked\";s:6:\"4.9.10\";s:12:\"translations\";a:0:{}}','no'),(50967,'_transient_timeout_external_ip_address_144.208.76.174','1553059785','no'),(50968,'_transient_external_ip_address_144.208.76.174','198.46.81.37','no'),(50972,'_transient_timeout_external_ip_address_31.184.238.53','1553060263','no'),(50973,'_transient_external_ip_address_31.184.238.53','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50981,'_transient_timeout_external_ip_address_121.169.145.111','1553066456','no'),(50982,'_transient_external_ip_address_121.169.145.111','198.46.81.37','no'),(50986,'_transient_timeout_external_ip_address_120.92.90.154','1553068458','no'),(50987,'_transient_external_ip_address_120.92.90.154','198.46.81.37','no'),(50991,'_transient_timeout_external_ip_address_207.154.240.6','1553071008','no'),(50992,'_transient_external_ip_address_207.154.240.6','198.46.81.37','no'),(51005,'_transient_timeout_external_ip_address_95.79.36.55','1553078171','no'),(50996,'_transient_timeout_external_ip_address_95.79.138.150','1553072927','no'),(50997,'_transient_external_ip_address_95.79.138.150','198.46.81.37','no'),(51006,'_transient_external_ip_address_95.79.36.55','198.46.81.37','no'),(51011,'_transient_timeout_external_ip_address_218.5.21.218','1553081794','no'),(51012,'_transient_external_ip_address_218.5.21.218','198.46.81.37','no'),(51019,'_transient_timeout_external_ip_address_178.128.229.77','1553088672','no'),(51020,'_transient_external_ip_address_178.128.229.77','198.46.81.37','no'),(51031,'_transient_timeout_external_ip_address_167.99.142.26','1553093415','no'),(51233,'_transient_timeout_external_ip_address_62.149.29.45','1553179693','no'),(51234,'_transient_external_ip_address_62.149.29.45','198.46.81.37','no'),(51032,'_transient_external_ip_address_167.99.142.26','198.46.81.37','no'),(51035,'_transient_timeout_external_ip_address_103.62.48.237','1553095049','no'),(51036,'_transient_external_ip_address_103.62.48.237','198.46.81.37','no'),(51040,'_transient_timeout_external_ip_address_54.171.104.26','1553097000','no'),(51041,'_transient_external_ip_address_54.171.104.26','198.46.81.37','no'),(51043,'_transient_timeout_external_ip_address_95.141.132.138','1553097912','no'),(51044,'_transient_external_ip_address_95.141.132.138','198.46.81.37','no'),(51048,'_transient_timeout_external_ip_address_178.159.37.38','1553098681','no'),(51049,'_transient_external_ip_address_178.159.37.38','198.46.81.37','no'),(51053,'_transient_timeout_external_ip_address_108.61.219.239','1553101330','no'),(51054,'_transient_external_ip_address_108.61.219.239','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51060,'_transient_timeout_external_ip_address_93.77.12.172','1553102024','no'),(51056,'_transient_timeout_external_ip_address_211.57.200.67','1553101874','no'),(51057,'_transient_external_ip_address_211.57.200.67','198.46.81.37','no'),(51061,'_transient_external_ip_address_93.77.12.172','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51064,'_transient_timeout_external_ip_address_180.76.15.141','1553103735','no'),(51065,'_transient_external_ip_address_180.76.15.141','198.46.81.37','no'),(51066,'_transient_timeout_external_ip_address_13.92.226.151','1553103779','no'),(51067,'_transient_external_ip_address_13.92.226.151','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51069,'_transient_timeout_external_ip_address_5.9.60.220','1553105654','no'),(51070,'_transient_external_ip_address_5.9.60.220','198.46.81.37','no'),(51073,'_transient_timeout_external_ip_address_192.254.147.170','1553105745','no'),(51074,'_transient_external_ip_address_192.254.147.170','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51077,'_transient_timeout_external_ip_address_95.79.208.200','1553108451','no'),(51078,'_transient_external_ip_address_95.79.208.200','198.46.81.37','no'),(51084,'_transient_timeout_external_ip_address_104.192.74.31','1553111033','no'),(51085,'_transient_external_ip_address_104.192.74.31','198.46.81.37','no'),(51091,'_transient_timeout_external_ip_address_51.38.236.43','1553115618','no'),(51092,'_transient_external_ip_address_51.38.236.43','198.46.81.37','no'),(51093,'_transient_timeout_external_ip_address_149.56.108.23','1553115928','no'),(51094,'_transient_external_ip_address_149.56.108.23','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51098,'_transient_timeout_external_ip_address_103.31.235.2','1553120724','no'),(51099,'_transient_external_ip_address_103.31.235.2','198.46.81.37','no'),(51100,'_transient_timeout_external_ip_address_198.1.88.84','1553121067','no'),(51101,'_transient_external_ip_address_198.1.88.84','198.46.81.37','no'),(51104,'_transient_timeout_external_ip_address_211.56.145.140','1553122682','no'),(51105,'_transient_external_ip_address_211.56.145.140','198.46.81.37','no'),(51106,'_transient_timeout_external_ip_address_213.202.212.174','1553123514','no'),(51107,'_transient_external_ip_address_213.202.212.174','198.46.81.37','no'),(51113,'_transient_timeout_external_ip_address_5.58.49.28','1553125140','no'),(51111,'_transient_timeout_external_ip_address_50.116.105.61','1553123577','no'),(51112,'_transient_external_ip_address_50.116.105.61','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51114,'_transient_external_ip_address_5.58.49.28','198.46.81.37','no'),(51116,'_transient_timeout_external_ip_address_164.132.119.83','1553125229','no'),(51117,'_transient_external_ip_address_164.132.119.83','198.46.81.37','no'),(51118,'_transient_timeout_external_ip_address_13.237.206.140','1553125985','no'),(51119,'_transient_external_ip_address_13.237.206.140','198.46.81.37','no'),(51122,'_transient_timeout_external_ip_address_216.194.175.40','1553126392','no'),(51123,'_transient_external_ip_address_216.194.175.40','198.46.81.37','no'),(51129,'_transient_timeout_external_ip_address_178.62.174.174','1553132303','no'),(51127,'_transient_timeout_external_ip_address_103.15.226.60','1553131224','no'),(51128,'_transient_external_ip_address_103.15.226.60','198.46.81.37','no'),(331,'wpmtst_db_version','1.0','yes'),(199,'widget_lfb-form-builder','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(202,'woocommerce_store_address','','yes'),(203,'woocommerce_store_address_2','','yes'),(204,'woocommerce_store_city','','yes'),(205,'woocommerce_default_country','GB','yes'),(206,'woocommerce_store_postcode','','yes'),(207,'woocommerce_allowed_countries','all','yes'),(208,'woocommerce_all_except_countries','','yes'),(209,'woocommerce_specific_allowed_countries','','yes'),(210,'woocommerce_ship_to_countries','','yes'),(142,'can_compress_scripts','1','no'),(150,'theme_mods_one-page-power','a:26:{s:18:\"custom_css_post_id\";i:-1;s:12:\"header_image\";s:13:\"remove-header\";s:11:\"theme_color\";s:7:\"#8224e3\";s:20:\"footer_info_bg_color\";s:7:\"#ddc296\";s:15:\"footer_bg_color\";s:7:\"#8224e3\";s:6:\"f_link\";s:0:\"\";s:16:\"background_image\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_position_y\";s:3:\"top\";s:15:\"background_size\";s:5:\"cover\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:21:\"background_attachment\";s:5:\"fixed\";s:16:\"background_color\";s:6:\"ffffff\";s:17:\"background_preset\";s:4:\"fill\";s:13:\"header_layout\";s:6:\"center\";s:13:\"title_disable\";s:1:\"1\";s:21:\"parallax_image_upload\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:16:\"parallax_heading\";s:18:\"What Sets Me Apart\";s:19:\"parallax_subheading\";s:23:\"- Experience Matters - \";s:20:\"parallax_button_text\";s:10:\"Contact Me\";s:12:\"slidr_button\";s:7:\"default\";s:14:\"sub_hdng_color\";s:7:\"#ffffff\";s:15:\"top_hd_bg_color\";s:15:\"rgba(0,0,0,0.3)\";s:20:\"our_services_heading\";s:8:\"Services\";s:23:\"our_services_subheading\";s:41:\"Just a few of the many services I provide\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1521218427;s:4:\"data\";a:5:{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\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:20:\"multi-service-widget\";a:0:{}}}}','yes'),(211,'woocommerce_specific_ship_to_countries','','yes'),(154,'recently_activated','a:0:{}','yes'),(300,'woocommerce_admin_notices','a:0:{}','yes'),(301,'_transient_woocommerce_webhook_ids','a:0:{}','yes'),(302,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(158,'widget_team-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(159,'widget_testimonial-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(332,'widget_strong-testimonials-view-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(336,'wpmtst_options','a:12:{s:11:\"embed_width\";s:0:\"\";s:17:\"load_font_awesome\";b:1;s:8:\"nofollow\";b:0;s:17:\"pending_indicator\";b:1;s:17:\"remove_whitespace\";b:1;s:7:\"reorder\";b:0;s:16:\"support_comments\";b:0;s:21:\"support_custom_fields\";b:0;s:9:\"scrolltop\";b:1;s:16:\"scrolltop_offset\";i:80;s:11:\"no_lazyload\";b:1;s:13:\"touch_enabled\";b:1;}','yes'),(337,'wpmtst_fields','a:2:{s:10:\"field_base\";a:25:{s:4:\"name\";s:0:\"\";s:12:\"name_mutable\";i:1;s:5:\"label\";s:0:\"\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:0:\"\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:0;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:1;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:0:\"\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;}s:11:\"field_types\";a:3:{s:4:\"post\";a:3:{s:10:\"post_title\";a:27:{s:4:\"name\";s:0:\"\";s:12:\"name_mutable\";i:0;s:5:\"label\";s:0:\"\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:4:\"text\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:0;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:0:\"\";s:11:\"admin_table\";i:1;s:18:\"admin_table_option\";i:0;s:23:\"show_admin_table_option\";i:0;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:17:\"Testimonial Title\";s:3:\"map\";s:10:\"post_title\";}s:12:\"post_content\";a:28:{s:4:\"name\";s:0:\"\";s:12:\"name_mutable\";i:0;s:5:\"label\";s:0:\"\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:8:\"textarea\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:1;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:0:\"\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:0;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:19:\"Testimonial Content\";s:3:\"map\";s:12:\"post_content\";s:4:\"core\";i:0;}s:14:\"featured_image\";a:27:{s:4:\"name\";s:0:\"\";s:12:\"name_mutable\";i:0;s:5:\"label\";s:0:\"\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:4:\"file\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:0;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:0;s:6:\"before\";s:0:\"\";s:5:\"after\";s:0:\"\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:14:\"Featured Image\";s:3:\"map\";s:14:\"featured_image\";}}s:6:\"custom\";a:4:{s:4:\"text\";a:26:{s:4:\"name\";s:0:\"\";s:12:\"name_mutable\";i:1;s:5:\"label\";s:0:\"\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:4:\"text\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:0;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:1;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:0:\"\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:4:\"text\";}s:5:\"email\";a:26:{s:4:\"name\";s:0:\"\";s:12:\"name_mutable\";i:1;s:5:\"label\";s:0:\"\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:5:\"email\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:0;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:0:\"\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:5:\"email\";}s:3:\"url\";a:26:{s:4:\"name\";s:0:\"\";s:12:\"name_mutable\";i:1;s:5:\"label\";s:0:\"\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:3:\"url\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:0;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:0:\"\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:3:\"URL\";}s:8:\"checkbox\";a:26:{s:4:\"name\";s:0:\"\";s:12:\"name_mutable\";i:1;s:5:\"label\";s:0:\"\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:8:\"checkbox\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:1;s:8:\"required\";i:0;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:1;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:0;s:6:\"before\";s:0:\"\";s:5:\"after\";s:0:\"\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:8:\"checkbox\";}}s:8:\"optional\";a:4:{s:17:\"category-selector\";a:26:{s:4:\"name\";s:0:\"\";s:12:\"name_mutable\";i:0;s:5:\"label\";s:0:\"\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:17:\"category-selector\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:0;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:0;s:6:\"before\";s:0:\"\";s:5:\"after\";s:0:\"\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:0;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:17:\"category selector\";}s:18:\"category-checklist\";a:26:{s:4:\"name\";s:0:\"\";s:12:\"name_mutable\";i:0;s:5:\"label\";s:0:\"\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:18:\"category-checklist\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:0;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:0;s:6:\"before\";s:0:\"\";s:5:\"after\";s:0:\"\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:0;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:18:\"category checklist\";}s:9:\"shortcode\";a:26:{s:4:\"name\";s:0:\"\";s:12:\"name_mutable\";i:1;s:5:\"label\";s:0:\"\";s:10:\"show_label\";i:0;s:10:\"input_type\";s:9:\"shortcode\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:0;s:20:\"show_required_option\";i:0;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:0;s:6:\"before\";s:0:\"\";s:5:\"after\";s:0:\"\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:0;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:1;s:12:\"option_label\";s:9:\"shortcode\";}s:6:\"rating\";a:26:{s:4:\"name\";s:0:\"\";s:12:\"name_mutable\";i:1;s:5:\"label\";s:0:\"\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:6:\"rating\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:0;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:1;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:0;s:6:\"before\";s:0:\"\";s:5:\"after\";s:0:\"\";s:11:\"admin_table\";i:1;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:11:\"star rating\";}}}}','yes'),(171,'customize_stashed_theme_mods','a:0:{}','no'),(213,'woocommerce_calc_taxes','no','yes'),(214,'woocommerce_currency','GBP','yes'),(215,'woocommerce_currency_pos','left','yes'),(216,'woocommerce_price_thousand_sep',',','yes'),(217,'woocommerce_price_decimal_sep','.','yes'),(218,'woocommerce_price_num_decimals','2','yes'),(219,'woocommerce_shop_page_id','','yes'),(220,'woocommerce_cart_redirect_after_add','no','yes'),(221,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(222,'woocommerce_weight_unit','kg','yes'),(223,'woocommerce_dimension_unit','cm','yes'),(224,'woocommerce_enable_reviews','yes','yes'),(225,'woocommerce_review_rating_verification_label','yes','no'),(226,'woocommerce_review_rating_verification_required','no','no'),(227,'woocommerce_enable_review_rating','yes','yes'),(228,'woocommerce_review_rating_required','yes','no'),(229,'woocommerce_manage_stock','yes','yes'),(230,'woocommerce_hold_stock_minutes','60','no'),(231,'woocommerce_notify_low_stock','yes','no'),(232,'woocommerce_notify_no_stock','yes','no'),(233,'woocommerce_stock_email_recipient','admin@moto-noto.com','no'),(234,'woocommerce_notify_low_stock_amount','2','no'),(235,'woocommerce_notify_no_stock_amount','0','yes'),(236,'woocommerce_hide_out_of_stock_items','no','yes'),(237,'woocommerce_stock_format','','yes'),(238,'woocommerce_file_download_method','force','no'),(239,'woocommerce_downloads_require_login','no','no'),(240,'woocommerce_downloads_grant_access_after_payment','yes','no'),(241,'woocommerce_prices_include_tax','no','yes'),(242,'woocommerce_tax_based_on','shipping','yes'),(243,'woocommerce_shipping_tax_class','inherit','yes'),(244,'woocommerce_tax_round_at_subtotal','no','yes'),(245,'woocommerce_tax_classes','Reduced rate\nZero rate','yes'),(246,'woocommerce_tax_display_shop','excl','yes'),(247,'woocommerce_tax_display_cart','excl','no'),(248,'woocommerce_price_display_suffix','','yes'),(249,'woocommerce_tax_total_display','itemized','no'),(250,'woocommerce_enable_shipping_calc','yes','no'),(251,'woocommerce_shipping_cost_requires_address','no','no'),(252,'woocommerce_ship_to_destination','billing','no'),(253,'woocommerce_shipping_debug_mode','no','no'),(254,'woocommerce_enable_coupons','yes','yes'),(255,'woocommerce_calc_discounts_sequentially','no','no'),(256,'woocommerce_enable_guest_checkout','yes','no'),(257,'woocommerce_force_ssl_checkout','no','yes'),(258,'woocommerce_unforce_ssl_checkout','no','yes'),(259,'woocommerce_cart_page_id','','yes'),(260,'woocommerce_checkout_page_id','','yes'),(261,'woocommerce_terms_page_id','','no'),(262,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(263,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(264,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(265,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(266,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(267,'woocommerce_myaccount_page_id','','yes'),(268,'woocommerce_enable_signup_and_login_from_checkout','yes','no'),(269,'woocommerce_enable_myaccount_registration','no','no'),(270,'woocommerce_enable_checkout_login_reminder','yes','no'),(271,'woocommerce_registration_generate_username','yes','no'),(272,'woocommerce_registration_generate_password','no','no'),(273,'woocommerce_myaccount_orders_endpoint','orders','yes'),(274,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(275,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(276,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(277,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(278,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(279,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(280,'woocommerce_logout_endpoint','customer-logout','yes'),(281,'woocommerce_email_from_name','Moto-Noto','no'),(282,'woocommerce_email_from_address','admin@moto-noto.com','no'),(283,'woocommerce_email_header_image','','no'),(284,'woocommerce_email_footer_text','{site_title}','no'),(285,'woocommerce_email_base_color','#96588a','no'),(286,'woocommerce_email_background_color','#f7f7f7','no'),(287,'woocommerce_email_body_background_color','#ffffff','no'),(288,'woocommerce_email_text_color','#3c3c3c','no'),(289,'woocommerce_api_enabled','yes','yes'),(290,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:7:\"product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(291,'current_theme_supports_woocommerce','yes','yes'),(292,'woocommerce_queue_flush_rewrite_rules','no','yes'),(293,'_transient_wc_attribute_taxonomies','a:0:{}','yes'),(294,'product_cat_children','a:0:{}','yes'),(295,'default_product_cat','15','yes'),(316,'woocommerce_meta_box_errors','a:0:{}','yes'),(298,'woocommerce_version','3.3.3','yes'),(299,'woocommerce_db_version','3.3.3','yes'),(303,'widget_woocommerce_layered_nav_filters','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(304,'widget_woocommerce_layered_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(305,'widget_woocommerce_price_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(306,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(307,'widget_woocommerce_product_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(308,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(309,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(310,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(311,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(312,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(313,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(315,'_transient_wc_count_comments','O:8:\"stdClass\":7:{s:14:\"total_comments\";i:1;s:3:\"all\";i:1;s:8:\"approved\";s:1:\"1\";s:9:\"moderated\";i:0;s:4:\"spam\";i:0;s:5:\"trash\";i:0;s:12:\"post-trashed\";i:0;}','yes'),(352,'bstwbsftwppdtplgns_options','a:1:{s:8:\"bws_menu\";a:1:{s:7:\"version\";a:1:{s:33:\"google-captcha/google-captcha.php\";s:5:\"2.1.5\";}}}','yes'),(353,'gglcptch_options','a:28:{s:17:\"whitelist_message\";s:24:\"You are in the whitelist\";s:10:\"public_key\";s:40:\"6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\";s:11:\"private_key\";s:40:\"6LeXHE0UAAAAAIbS7myiHWcPZKyxBCHGjiv5zMfO\";s:10:\"login_form\";i:1;s:17:\"registration_form\";i:1;s:14:\"reset_pwd_form\";i:1;s:13:\"comments_form\";i:1;s:12:\"contact_form\";i:0;s:5:\"theme\";s:3:\"red\";s:8:\"theme_v2\";s:5:\"light\";s:17:\"recaptcha_version\";s:2:\"v2\";s:21:\"plugin_option_version\";s:4:\"1.36\";s:13:\"first_install\";i:1521216391;s:23:\"display_settings_notice\";i:1;s:22:\"suggest_feature_banner\";i:1;s:13:\"administrator\";i:0;s:6:\"editor\";i:0;s:6:\"author\";i:0;s:11:\"contributor\";i:0;s:10:\"subscriber\";i:0;s:8:\"lfb_role\";i:0;s:8:\"customer\";i:0;s:12:\"shop_manager\";i:0;s:17:\"plugin_db_version\";s:3:\"0.1\";s:19:\"go_settings_counter\";i:2;s:13:\"keys_verified\";b:1;s:14:\"disable_submit\";i:0;s:20:\"hide_premium_options\";a:0:{}}','yes'),(356,'_transient_product_query-transient-version','1521216540','yes'),(373,'woocommerce_maybe_regenerate_images_hash','5b257f1765c54906b32d8cdc58f79f0d','yes'),(386,'_transient_shipping-transient-version','1521217595','yes'),(51630,'_transient_timeout_external_ip_address_85.248.227.164','1553337322','no'),(51631,'_transient_external_ip_address_85.248.227.164','198.46.81.37','no'),(338,'wpmtst_base_forms','a:2:{s:7:\"default\";a:4:{s:4:\"name\";s:7:\"default\";s:5:\"label\";s:12:\"Default Form\";s:8:\"readonly\";i:1;s:6:\"fields\";a:7:{i:0;a:27:{s:4:\"name\";s:11:\"client_name\";s:12:\"name_mutable\";i:1;s:5:\"label\";s:9:\"Full Name\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:4:\"text\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:1;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:1;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:23:\"What is your full name?\";s:11:\"admin_table\";i:1;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:4:\"text\";s:11:\"record_type\";s:6:\"custom\";}i:1;a:27:{s:4:\"name\";s:5:\"email\";s:12:\"name_mutable\";i:1;s:5:\"label\";s:5:\"Email\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:5:\"email\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:1;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:27:\"What is your email address?\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:5:\"email\";s:11:\"record_type\";s:6:\"custom\";}i:3;a:27:{s:4:\"name\";s:12:\"company_name\";s:12:\"name_mutable\";i:1;s:5:\"label\";s:12:\"Company Name\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:4:\"text\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:0;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:1;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:26:\"What is your company name?\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:4:\"text\";s:11:\"record_type\";s:6:\"custom\";}i:4;a:27:{s:4:\"name\";s:15:\"company_website\";s:12:\"name_mutable\";i:1;s:5:\"label\";s:15:\"Company Website\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:3:\"url\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:0;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:33:\"Does your company have a website?\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:3:\"URL\";s:11:\"record_type\";s:6:\"custom\";}i:5;a:28:{s:4:\"name\";s:10:\"post_title\";s:12:\"name_mutable\";i:0;s:5:\"label\";s:7:\"Heading\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:4:\"text\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:0;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:32:\"A headline for your testimonial.\";s:11:\"admin_table\";i:1;s:18:\"admin_table_option\";i:0;s:23:\"show_admin_table_option\";i:0;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:17:\"Testimonial Title\";s:3:\"map\";s:10:\"post_title\";s:11:\"record_type\";s:4:\"post\";}i:6;a:29:{s:4:\"name\";s:12:\"post_content\";s:12:\"name_mutable\";i:0;s:5:\"label\";s:11:\"Testimonial\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:8:\"textarea\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:1;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:27:\"What do you think about us?\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:0;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:19:\"Testimonial Content\";s:3:\"map\";s:12:\"post_content\";s:4:\"core\";i:0;s:11:\"record_type\";s:4:\"post\";}i:7;a:28:{s:4:\"name\";s:14:\"featured_image\";s:12:\"name_mutable\";i:0;s:5:\"label\";s:5:\"Photo\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:4:\"file\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:0;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:0;s:6:\"before\";s:0:\"\";s:5:\"after\";s:34:\"Would you like to include a photo?\";s:11:\"admin_table\";i:1;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:14:\"Featured Image\";s:3:\"map\";s:14:\"featured_image\";s:11:\"record_type\";s:4:\"post\";}}}s:7:\"minimal\";a:4:{s:4:\"name\";s:7:\"minimal\";s:5:\"label\";s:12:\"Minimal Form\";s:8:\"readonly\";i:1;s:6:\"fields\";a:3:{i:0;a:27:{s:4:\"name\";s:11:\"client_name\";s:12:\"name_mutable\";i:1;s:5:\"label\";s:4:\"Name\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:4:\"text\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:1;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:1;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:0:\"\";s:11:\"admin_table\";i:1;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:4:\"text\";s:11:\"record_type\";s:6:\"custom\";}i:1;a:27:{s:4:\"name\";s:5:\"email\";s:12:\"name_mutable\";i:1;s:5:\"label\";s:5:\"Email\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:5:\"email\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:1;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:0:\"\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:5:\"email\";s:11:\"record_type\";s:6:\"custom\";}i:2;a:29:{s:4:\"name\";s:12:\"post_content\";s:12:\"name_mutable\";i:0;s:5:\"label\";s:11:\"Testimonial\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:8:\"textarea\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:1;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:0:\"\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:0;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:19:\"Testimonial Content\";s:3:\"map\";s:12:\"post_content\";s:4:\"core\";i:0;s:11:\"record_type\";s:4:\"post\";}}}}','yes'),(339,'wpmtst_custom_forms','a:1:{i:1;a:4:{s:4:\"name\";s:6:\"custom\";s:5:\"label\";s:11:\"Custom Form\";s:8:\"readonly\";i:0;s:6:\"fields\";a:7:{i:0;a:27:{s:4:\"name\";s:11:\"client_name\";s:12:\"name_mutable\";i:1;s:5:\"label\";s:9:\"Full Name\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:4:\"text\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:1;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:1;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:23:\"What is your full name?\";s:11:\"admin_table\";i:1;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:4:\"text\";s:11:\"record_type\";s:6:\"custom\";}i:1;a:27:{s:4:\"name\";s:5:\"email\";s:12:\"name_mutable\";i:1;s:5:\"label\";s:5:\"Email\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:5:\"email\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:1;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:27:\"What is your email address?\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:5:\"email\";s:11:\"record_type\";s:6:\"custom\";}i:3;a:27:{s:4:\"name\";s:12:\"company_name\";s:12:\"name_mutable\";i:1;s:5:\"label\";s:12:\"Company Name\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:4:\"text\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:0;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:1;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:26:\"What is your company name?\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:4:\"text\";s:11:\"record_type\";s:6:\"custom\";}i:4;a:27:{s:4:\"name\";s:15:\"company_website\";s:12:\"name_mutable\";i:1;s:5:\"label\";s:15:\"Company Website\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:3:\"url\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:0;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:33:\"Does your company have a website?\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:3:\"URL\";s:11:\"record_type\";s:6:\"custom\";}i:5;a:28:{s:4:\"name\";s:10:\"post_title\";s:12:\"name_mutable\";i:0;s:5:\"label\";s:7:\"Heading\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:4:\"text\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:0;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:32:\"A headline for your testimonial.\";s:11:\"admin_table\";i:1;s:18:\"admin_table_option\";i:0;s:23:\"show_admin_table_option\";i:0;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:17:\"Testimonial Title\";s:3:\"map\";s:10:\"post_title\";s:11:\"record_type\";s:4:\"post\";}i:6;a:29:{s:4:\"name\";s:12:\"post_content\";s:12:\"name_mutable\";i:0;s:5:\"label\";s:11:\"Testimonial\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:8:\"textarea\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:1;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:1;s:6:\"before\";s:0:\"\";s:5:\"after\";s:27:\"What do you think about us?\";s:11:\"admin_table\";i:0;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:0;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:19:\"Testimonial Content\";s:3:\"map\";s:12:\"post_content\";s:4:\"core\";i:0;s:11:\"record_type\";s:4:\"post\";}i:7;a:28:{s:4:\"name\";s:14:\"featured_image\";s:12:\"name_mutable\";i:0;s:5:\"label\";s:5:\"Photo\";s:10:\"show_label\";i:1;s:10:\"input_type\";s:4:\"file\";s:12:\"action_input\";s:0:\"\";s:13:\"action_output\";s:0:\"\";s:4:\"text\";s:0:\"\";s:16:\"show_text_option\";i:0;s:8:\"required\";i:0;s:20:\"show_required_option\";i:1;s:18:\"default_form_value\";s:0:\"\";s:21:\"default_display_value\";s:0:\"\";s:20:\"show_default_options\";i:0;s:5:\"error\";s:23:\"This field is required.\";s:11:\"placeholder\";s:0:\"\";s:23:\"show_placeholder_option\";i:0;s:6:\"before\";s:0:\"\";s:5:\"after\";s:34:\"Would you like to include a photo?\";s:11:\"admin_table\";i:1;s:18:\"admin_table_option\";i:1;s:23:\"show_admin_table_option\";i:1;s:17:\"shortcode_on_form\";s:0:\"\";s:20:\"shortcode_on_display\";s:0:\"\";s:22:\"show_shortcode_options\";i:0;s:12:\"option_label\";s:14:\"Featured Image\";s:3:\"map\";s:14:\"featured_image\";s:11:\"record_type\";s:4:\"post\";}}}}','yes'),(340,'wpmtst_form_options','a:21:{s:11:\"post_status\";s:7:\"pending\";s:12:\"admin_notify\";b:1;s:10:\"mail_queue\";b:0;s:11:\"sender_name\";s:9:\"Moto-Noto\";s:17:\"sender_site_email\";i:0;s:12:\"sender_email\";s:22:\"lornaaline@prodigy.net\";s:10:\"recipients\";a:1:{i:0;a:4:{s:10:\"admin_name\";s:0:\"\";s:7:\"primary\";b:1;s:16:\"admin_site_email\";s:1:\"1\";s:11:\"admin_email\";s:0:\"\";}}s:17:\"default_recipient\";a:2:{s:10:\"admin_name\";s:0:\"\";s:11:\"admin_email\";s:0:\"\";}s:13:\"email_subject\";s:30:\"New testimonial for %BLOGNAME%\";s:13:\"email_message\";s:98:\"New testimonial submission for %BLOGNAME%. This is awaiting action from the website administrator.\";s:7:\"captcha\";s:14:\"google-captcha\";s:15:\"honeypot_before\";b:0;s:14:\"honeypot_after\";b:0;s:8:\"messages\";a:5:{s:14:\"required-field\";a:3:{s:11:\"description\";s:14:\"Required Field\";s:7:\"enabled\";b:1;s:4:\"text\";s:14:\"Required field\";}s:7:\"captcha\";a:2:{s:11:\"description\";s:13:\"Captcha Label\";s:4:\"text\";s:7:\"Captcha\";}s:18:\"form-submit-button\";a:2:{s:11:\"description\";s:13:\"Submit Button\";s:4:\"text\";s:15:\"Add Testimonial\";}s:16:\"submission-error\";a:2:{s:11:\"description\";s:16:\"Submission Error\";s:4:\"text\";s:48:\"There was a problem processing your testimonial.\";}s:18:\"submission-success\";a:2:{s:11:\"description\";s:18:\"Submission Success\";s:4:\"text\";s:54:\"Thank you! Your testimonial is waiting to be approved.\";}}s:17:\"scrolltop_success\";b:1;s:24:\"scrolltop_success_offset\";i:80;s:15:\"scrolltop_error\";b:1;s:22:\"scrolltop_error_offset\";i:80;s:14:\"success_action\";s:7:\"message\";s:19:\"success_redirect_id\";i:0;s:20:\"success_redirect_url\";s:0:\"\";}','yes'),(341,'wpmtst_compat_options','a:3:{s:12:\"page_loading\";s:0:\"\";s:9:\"prerender\";s:7:\"current\";s:4:\"ajax\";a:7:{s:6:\"method\";s:0:\"\";s:15:\"universal_timer\";d:0.5;s:14:\"observer_timer\";d:0.5;s:12:\"container_id\";s:4:\"page\";s:12:\"addednode_id\";s:7:\"content\";s:5:\"event\";s:0:\"\";s:6:\"script\";s:0:\"\";}}','yes'),(342,'wpmtst_view_options','a:7:{s:4:\"mode\";a:4:{s:7:\"display\";a:3:{s:4:\"name\";s:7:\"display\";s:5:\"label\";s:7:\"Display\";s:11:\"description\";s:46:\"Display your testimonials in a list or a grid.\";}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:5:\"label\";s:9:\"Slideshow\";s:11:\"description\";s:40:\"Create a slideshow of your testimonials.\";}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:5:\"label\";s:4:\"Form\";s:11:\"description\";s:38:\"Display a testimonial submission form.\";}s:15:\"single_template\";a:3:{s:4:\"name\";s:15:\"single_template\";s:5:\"label\";s:15:\"Single Template\";s:11:\"description\";s:66:\"When viewing the testimonial using a theme\'s single post template.\";}}s:5:\"order\";a:4:{s:6:\"random\";s:6:\"random\";s:10:\"menu_order\";s:10:\"menu order\";s:6:\"newest\";s:12:\"newest first\";s:6:\"oldest\";s:12:\"oldest first\";}s:16:\"slideshow_effect\";a:4:{s:4:\"none\";s:20:\"no transition effect\";s:4:\"fade\";s:4:\"fade\";s:10:\"horizontal\";s:19:\"scroll horizontally\";s:8:\"vertical\";s:17:\"scroll vertically\";}s:16:\"slideshow_height\";a:2:{s:7:\"dynamic\";s:28:\"Adjust height for each slide\";s:6:\"static\";s:37:\"Set height to match the tallest slide\";}s:20:\"slideshow_nav_method\";a:2:{s:8:\"controls\";a:4:{s:4:\"none\";a:2:{s:5:\"label\";s:4:\"none\";s:4:\"args\";a:3:{s:8:\"controls\";i:0;s:5:\"pager\";i:0;s:12:\"autoControls\";i:0;}}s:4:\"full\";a:4:{s:5:\"label\";s:36:\"Bottom: previous / play-pause / next\";s:5:\"class\";s:18:\"controls-type-full\";s:18:\"add_position_class\";i:1;s:4:\"args\";a:5:{s:5:\"pager\";i:0;s:12:\"autoControls\";i:1;s:19:\"autoControlsCombine\";i:1;s:14:\"fullSetButtons\";i:1;s:11:\"fullSetText\";i:1;}}s:6:\"simple\";a:4:{s:5:\"label\";s:23:\"Bottom: previous / next\";s:5:\"class\";s:20:\"controls-type-simple\";s:18:\"add_position_class\";i:1;s:4:\"args\";a:2:{s:8:\"controls\";i:1;s:12:\"autoControls\";i:0;}}s:5:\"sides\";a:4:{s:5:\"label\";s:22:\"Sides: previous / next\";s:5:\"class\";s:19:\"controls-type-sides\";s:18:\"add_position_class\";i:0;s:4:\"args\";a:4:{s:8:\"controls\";i:1;s:12:\"autoControls\";i:0;s:8:\"prevText\";s:0:\"\";s:8:\"nextText\";s:0:\"\";}}}s:5:\"pager\";a:2:{s:4:\"none\";a:2:{s:5:\"label\";s:4:\"none\";s:4:\"args\";a:0:{}}s:4:\"full\";a:3:{s:5:\"label\";s:4:\"full\";s:5:\"class\";s:15:\"pager-type-full\";s:4:\"args\";a:1:{s:5:\"pager\";i:1;}}}}s:19:\"slideshow_nav_style\";a:2:{s:8:\"controls\";a:4:{s:7:\"buttons\";a:3:{s:5:\"label\";s:9:\"buttons 1\";s:5:\"class\";s:22:\"controls-style-buttons\";s:4:\"args\";a:4:{s:9:\"startText\";s:0:\"\";s:8:\"stopText\";s:0:\"\";s:8:\"prevText\";s:0:\"\";s:8:\"nextText\";s:0:\"\";}}s:8:\"buttons2\";a:3:{s:5:\"label\";s:9:\"buttons 2\";s:5:\"class\";s:23:\"controls-style-buttons2\";s:4:\"args\";a:4:{s:9:\"startText\";s:0:\"\";s:8:\"stopText\";s:0:\"\";s:8:\"prevText\";s:0:\"\";s:8:\"nextText\";s:0:\"\";}}s:8:\"buttons3\";a:3:{s:5:\"label\";s:9:\"buttons 3\";s:5:\"class\";s:23:\"controls-style-buttons3\";s:4:\"args\";a:4:{s:9:\"startText\";s:0:\"\";s:8:\"stopText\";s:0:\"\";s:8:\"prevText\";s:0:\"\";s:8:\"nextText\";s:0:\"\";}}s:4:\"text\";a:3:{s:5:\"label\";s:4:\"text\";s:5:\"class\";s:19:\"controls-style-text\";s:4:\"args\";a:4:{s:9:\"startText\";s:4:\"Play\";s:8:\"stopText\";s:5:\"Pause\";s:8:\"prevText\";s:8:\"Previous\";s:8:\"nextText\";s:4:\"Next\";}}}s:5:\"pager\";a:2:{s:7:\"buttons\";a:3:{s:5:\"label\";s:7:\"buttons\";s:5:\"class\";s:19:\"pager-style-buttons\";s:4:\"args\";a:2:{s:10:\"buildPager\";s:5:\"icons\";s:14:\"simpleSetPager\";i:1;}}s:4:\"text\";a:3:{s:5:\"label\";s:4:\"text\";s:5:\"class\";s:16:\"pager-style-text\";s:4:\"args\";a:2:{s:10:\"buildPager\";N;s:13:\"simpleSetText\";i:1;}}}}s:22:\"slideshow_nav_position\";a:2:{s:6:\"inside\";s:6:\"inside\";s:7:\"outside\";s:7:\"outside\";}}','yes'),(343,'wpmtst_view_default','a:45:{s:10:\"background\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"type\";s:0:\"\";s:6:\"preset\";s:0:\"\";s:9:\"gradient1\";s:0:\"\";s:9:\"gradient2\";s:0:\"\";}s:8:\"category\";s:3:\"all\";s:5:\"class\";s:0:\"\";s:14:\"client_section\";a:2:{i:0;a:4:{s:5:\"field\";s:11:\"client_name\";s:4:\"type\";s:4:\"text\";s:6:\"before\";s:0:\"\";s:5:\"class\";s:16:\"testimonial-name\";}i:1;a:6:{s:5:\"field\";s:12:\"company_name\";s:4:\"type\";s:4:\"link\";s:6:\"before\";s:0:\"\";s:3:\"url\";s:15:\"company_website\";s:5:\"class\";s:19:\"testimonial-company\";s:7:\"new_tab\";b:1;}}s:12:\"column_count\";i:2;s:15:\"container_class\";s:0:\"\";s:14:\"container_data\";s:0:\"\";s:7:\"content\";s:6:\"entire\";s:5:\"count\";i:-1;s:12:\"divi_builder\";i:0;s:14:\"excerpt_length\";i:55;s:10:\"font-color\";a:2:{s:5:\"color\";s:0:\"\";s:4:\"type\";s:0:\"\";}s:9:\"form_ajax\";i:0;s:7:\"form_id\";i:1;s:8:\"gravatar\";s:2:\"no\";s:2:\"id\";s:0:\"\";s:6:\"layout\";s:0:\"\";s:8:\"lightbox\";s:0:\"\";s:14:\"lightbox_class\";s:0:\"\";s:4:\"mode\";s:7:\"display\";s:14:\"more_full_post\";b:0;s:9:\"more_page\";b:0;s:14:\"more_page_hook\";s:18:\"wpmtst_view_footer\";s:12:\"more_page_id\";i:0;s:14:\"more_page_text\";s:22:\"Read more testimonials\";s:9:\"more_post\";b:1;s:18:\"more_post_ellipsis\";b:1;s:14:\"more_post_text\";s:9:\"Read more\";s:4:\"note\";s:0:\"\";s:5:\"order\";s:6:\"oldest\";s:4:\"page\";s:0:\"\";s:10:\"pagination\";b:0;s:19:\"pagination_settings\";a:11:{s:4:\"type\";s:6:\"simple\";s:3:\"nav\";s:5:\"after\";s:8:\"per_page\";i:5;s:8:\"show_all\";i:0;s:8:\"end_size\";i:1;s:8:\"mid_size\";i:2;s:9:\"prev_next\";i:1;s:9:\"prev_text\";s:16:\"&laquo; Previous\";s:9:\"next_text\";s:12:\"Next &raquo;\";s:18:\"before_page_number\";s:0:\"\";s:17:\"after_page_number\";s:0:\"\";}s:18:\"slideshow_settings\";a:14:{s:6:\"effect\";s:4:\"fade\";s:5:\"speed\";i:1;s:5:\"pause\";i:8;s:10:\"auto_start\";b:1;s:10:\"auto_hover\";b:1;s:12:\"adapt_height\";b:1;s:18:\"adapt_height_speed\";d:0.5;s:7:\"stretch\";i:0;s:18:\"stop_auto_on_click\";b:1;s:13:\"controls_type\";s:4:\"none\";s:14:\"controls_style\";s:7:\"buttons\";s:10:\"pager_type\";s:4:\"none\";s:11:\"pager_style\";s:7:\"buttons\";s:12:\"nav_position\";s:6:\"inside\";}s:8:\"template\";s:7:\"default\";s:17:\"template_settings\";a:0:{}s:9:\"thumbnail\";b:1;s:16:\"thumbnail_height\";N;s:14:\"thumbnail_size\";s:9:\"thumbnail\";s:15:\"thumbnail_width\";N;s:5:\"title\";b:1;s:10:\"title_link\";b:0;s:18:\"use_default_length\";b:1;s:16:\"use_default_more\";b:0;s:4:\"view\";s:0:\"\";}','yes'),(344,'wpmtst_history','a:4:{s:23:\"2.23.0_convert_nofollow\";s:19:\"2018-03-16 16:03:37\";s:23:\"2.28_new_update_process\";s:19:\"2018-03-16 16:03:37\";s:28:\"2.29_captcha_options_changed\";s:19:\"2018-03-23 18:39:20\";s:27:\"2.30_new_template_structure\";s:19:\"2018-03-23 18:39:20\";}','yes'),(345,'wpmtst_captcha_plugins','a:3:{s:14:\"google-captcha\";a:9:{s:4:\"name\";s:36:\"Google Captcha by BestWebSoft (free)\";s:4:\"desc\";s:121:\"<strong>Recommended.</strong> The best choice for both Invisible reCAPTCHA and reCAPTCHA V2 (\"I\'m not a robot\" checkbox).\";s:5:\"class\";s:14:\"Google_Captcha\";s:4:\"file\";s:33:\"google-captcha/google-captcha.php\";s:8:\"settings\";s:33:\"admin.php?page=google-captcha.php\";s:6:\"search\";s:46:\"plugin-install.php?tab=search&s=Google+Captcha\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/google-captcha\";s:9:\"installed\";b:0;s:6:\"active\";b:0;}s:11:\"captcha-pro\";a:9:{s:4:\"name\";s:36:\"Captcha Pro by BestWebSoft (premium)\";s:4:\"desc\";s:55:\"An excellent plugin for math- and image-based captchas.\";s:5:\"class\";s:11:\"Captcha_Pro\";s:4:\"file\";s:27:\"captcha-pro/captcha_pro.php\";s:8:\"settings\";s:30:\"admin.php?page=captcha_pro.php\";s:6:\"search\";s:0:\"\";s:3:\"url\";s:59:\"https://bestwebsoft.com/products/wordpress/plugins/captcha/\";s:9:\"installed\";b:0;s:6:\"active\";b:0;}s:21:\"really-simple-captcha\";a:7:{s:4:\"name\";s:48:\"Really Simple Captcha by Takayuki Miyoshi (free)\";s:5:\"class\";s:21:\"Really_Simple_Captcha\";s:4:\"file\";s:47:\"really-simple-captcha/really-simple-captcha.php\";s:6:\"search\";s:53:\"plugin-install.php?tab=search&s=Really+Simple+Captcha\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/really-simple-captcha/\";s:9:\"installed\";b:0;s:6:\"active\";b:0;}}','yes'),(346,'wpmtst_plugin_version','2.30.4','yes'),(347,'wpmtst_update_log','a:2:{s:19:\"2018-03-16 16:03:37\";a:1:{i:0;s:50:\"Strong_Testimonials_Updater : NEW INSTALL = 2.30.3\";}s:19:\"2018-03-23 18:39:20\";a:1:{i:0;s:57:\"Strong_Testimonials_Updater : old: 2.30.3 --> new: 2.30.4\";}}','yes'),(405,'_elementor_installed_time','1521218071','yes'),(406,'elementor_remote_info_templates_data','a:139:{i:0;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:2:\"14\";s:16:\"popularity_index\";s:2:\"21\";s:11:\"trend_index\";s:1:\"2\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:1;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:\"15\";s:16:\"popularity_index\";s:1:\"1\";s:11:\"trend_index\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:2;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:\"16\";s:16:\"popularity_index\";s:2:\"44\";s:11:\"trend_index\";s:2:\"58\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:3;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:\"17\";s:16:\"popularity_index\";s:2:\"54\";s:11:\"trend_index\";s:2:\"77\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:4;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:\"18\";s:16:\"popularity_index\";s:2:\"66\";s:11:\"trend_index\";s:3:\"110\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:5;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:\"19\";s:16:\"popularity_index\";s:1:\"6\";s:11:\"trend_index\";s:1:\"8\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:6;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:2:\"20\";s:16:\"popularity_index\";s:1:\"2\";s:11:\"trend_index\";s:1:\"3\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:7;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:\"21\";s:16:\"popularity_index\";s:3:\"104\";s:11:\"trend_index\";s:3:\"181\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:8;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:\"22\";s:16:\"popularity_index\";s:3:\"175\";s:11:\"trend_index\";s:3:\"195\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:9;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:\"23\";s:16:\"popularity_index\";s:2:\"83\";s:11:\"trend_index\";s:3:\"157\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:10;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:2:\"24\";s:16:\"popularity_index\";s:1:\"3\";s:11:\"trend_index\";s:1:\"7\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:11;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:2:\"25\";s:16:\"popularity_index\";s:1:\"5\";s:11:\"trend_index\";s:1:\"6\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:12;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:\"26\";s:16:\"popularity_index\";s:2:\"52\";s:11:\"trend_index\";s:2:\"81\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:13;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:\"27\";s:16:\"popularity_index\";s:3:\"107\";s:11:\"trend_index\";s:3:\"269\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:14;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:\"28\";s:16:\"popularity_index\";s:3:\"126\";s:11:\"trend_index\";s:3:\"203\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:15;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:2:\"29\";s:16:\"popularity_index\";s:1:\"7\";s:11:\"trend_index\";s:2:\"14\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:16;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:\"30\";s:16:\"popularity_index\";s:2:\"86\";s:11:\"trend_index\";s:3:\"193\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:17;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:\"31\";s:16:\"popularity_index\";s:1:\"8\";s:11:\"trend_index\";s:1:\"9\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:18;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:\"32\";s:16:\"popularity_index\";s:3:\"113\";s:11:\"trend_index\";s:3:\"199\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:19;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:\"33\";s:16:\"popularity_index\";s:3:\"293\";s:11:\"trend_index\";s:3:\"394\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:20;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:\"34\";s:16:\"popularity_index\";s:3:\"248\";s:11:\"trend_index\";s:3:\"321\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:21;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:\"35\";s:16:\"popularity_index\";s:2:\"93\";s:11:\"trend_index\";s:3:\"132\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:22;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:\"36\";s:16:\"popularity_index\";s:2:\"98\";s:11:\"trend_index\";s:3:\"177\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:23;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:\"37\";s:16:\"popularity_index\";s:3:\"193\";s:11:\"trend_index\";s:3:\"234\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:24;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:\"38\";s:16:\"popularity_index\";s:3:\"269\";s:11:\"trend_index\";s:3:\"301\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:25;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:\"39\";s:16:\"popularity_index\";s:1:\"4\";s:11:\"trend_index\";s:1:\"5\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:26;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:\"40\";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:27;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:\"41\";s:16:\"popularity_index\";s:2:\"23\";s:11:\"trend_index\";s:2:\"38\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:28;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:\"42\";s:16:\"popularity_index\";s:2:\"11\";s:11:\"trend_index\";s:2:\"15\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:29;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:\"43\";s:16:\"popularity_index\";s:2:\"12\";s:11:\"trend_index\";s:2:\"18\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:30;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:\"44\";s:16:\"popularity_index\";s:3:\"122\";s:11:\"trend_index\";s:3:\"182\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:31;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:\"45\";s:16:\"popularity_index\";s:3:\"215\";s:11:\"trend_index\";s:3:\"310\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:32;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:\"46\";s:16:\"popularity_index\";s:3:\"191\";s:11:\"trend_index\";s:3:\"353\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:33;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:\"47\";s:16:\"popularity_index\";s:3:\"189\";s:11:\"trend_index\";s:3:\"296\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:34;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:\"48\";s:16:\"popularity_index\";s:3:\"134\";s:11:\"trend_index\";s:3:\"245\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:35;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:\"49\";s:16:\"popularity_index\";s:2:\"19\";s:11:\"trend_index\";s:2:\"33\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:36;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:2:\"50\";s:16:\"popularity_index\";s:3:\"142\";s:11:\"trend_index\";s:3:\"242\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:37;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:2:\"51\";s:16:\"popularity_index\";s:3:\"151\";s:11:\"trend_index\";s:3:\"259\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:38;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:\"52\";s:16:\"popularity_index\";s:3:\"243\";s:11:\"trend_index\";s:3:\"338\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:39;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:\"53\";s:16:\"popularity_index\";s:3:\"270\";s:11:\"trend_index\";s:3:\"420\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:40;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:\"54\";s:16:\"popularity_index\";s:3:\"295\";s:11:\"trend_index\";s:3:\"400\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:41;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:\"55\";s:16:\"popularity_index\";s:3:\"296\";s:11:\"trend_index\";s:3:\"381\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:42;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:\"56\";s:16:\"popularity_index\";s:3:\"204\";s:11:\"trend_index\";s:3:\"265\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:43;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:\"57\";s:16:\"popularity_index\";s:3:\"121\";s:11:\"trend_index\";s:3:\"215\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:44;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:\"58\";s:16:\"popularity_index\";s:3:\"125\";s:11:\"trend_index\";s:3:\"254\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:45;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:\"59\";s:16:\"popularity_index\";s:3:\"138\";s:11:\"trend_index\";s:3:\"239\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:46;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:\"60\";s:16:\"popularity_index\";s:3:\"246\";s:11:\"trend_index\";s:3:\"358\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:47;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:\"61\";s:16:\"popularity_index\";s:3:\"201\";s:11:\"trend_index\";s:3:\"250\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:48;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:\"62\";s:16:\"popularity_index\";s:3:\"267\";s:11:\"trend_index\";s:3:\"363\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:49;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:\"63\";s:16:\"popularity_index\";s:3:\"216\";s:11:\"trend_index\";s:3:\"286\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:50;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:2:\"64\";s:16:\"popularity_index\";s:3:\"213\";s:11:\"trend_index\";s:3:\"289\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:51;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:\"65\";s:16:\"popularity_index\";s:3:\"200\";s:11:\"trend_index\";s:3:\"325\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:52;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:\"66\";s:16:\"popularity_index\";s:3:\"226\";s:11:\"trend_index\";s:3:\"334\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:53;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:\"67\";s:16:\"popularity_index\";s:2:\"24\";s:11:\"trend_index\";s:2:\"42\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:54;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:\"68\";s:16:\"popularity_index\";s:2:\"38\";s:11:\"trend_index\";s:2:\"66\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:55;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:\"69\";s:16:\"popularity_index\";s:2:\"26\";s:11:\"trend_index\";s:2:\"26\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:56;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:\"70\";s:16:\"popularity_index\";s:3:\"150\";s:11:\"trend_index\";s:3:\"332\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:57;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:\"71\";s:16:\"popularity_index\";s:1:\"9\";s:11:\"trend_index\";s:2:\"10\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:58;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:\"72\";s:16:\"popularity_index\";s:3:\"199\";s:11:\"trend_index\";s:3:\"314\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:59;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:\"73\";s:16:\"popularity_index\";s:3:\"299\";s:11:\"trend_index\";s:3:\"291\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:60;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:\"74\";s:16:\"popularity_index\";s:3:\"250\";s:11:\"trend_index\";s:3:\"283\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:61;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:\"75\";s:16:\"popularity_index\";s:3:\"262\";s:11:\"trend_index\";s:3:\"322\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:62;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:2:\"76\";s:16:\"popularity_index\";s:2:\"20\";s:11:\"trend_index\";s:2:\"30\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:63;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:\"77\";s:16:\"popularity_index\";s:2:\"25\";s:11:\"trend_index\";s:2:\"50\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:64;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:\"78\";s:16:\"popularity_index\";s:2:\"48\";s:11:\"trend_index\";s:2:\"97\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:65;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:\"79\";s:16:\"popularity_index\";s:2:\"32\";s:11:\"trend_index\";s:2:\"71\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:66;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:\"80\";s:16:\"popularity_index\";s:3:\"232\";s:11:\"trend_index\";s:3:\"351\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:67;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:\"81\";s:16:\"popularity_index\";s:3:\"348\";s:11:\"trend_index\";s:3:\"402\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:68;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:\"82\";s:16:\"popularity_index\";s:3:\"315\";s:11:\"trend_index\";s:3:\"341\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:69;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:\"83\";s:16:\"popularity_index\";s:3:\"347\";s:11:\"trend_index\";s:3:\"378\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:70;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:\"84\";s:16:\"popularity_index\";s:3:\"364\";s:11:\"trend_index\";s:3:\"425\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:71;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:\"85\";s:16:\"popularity_index\";s:3:\"394\";s:11:\"trend_index\";s:3:\"403\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:72;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:\"86\";s:16:\"popularity_index\";s:3:\"370\";s:11:\"trend_index\";s:3:\"404\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:73;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:\"87\";s:16:\"popularity_index\";s:2:\"41\";s:11:\"trend_index\";s:3:\"183\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:74;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:\"88\";s:16:\"popularity_index\";s:3:\"188\";s:11:\"trend_index\";s:3:\"257\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:75;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:\"89\";s:16:\"popularity_index\";s:2:\"28\";s:11:\"trend_index\";s:2:\"48\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:76;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:\"90\";s:16:\"popularity_index\";s:2:\"53\";s:11:\"trend_index\";s:3:\"101\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:77;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:2:\"91\";s:16:\"popularity_index\";s:2:\"40\";s:11:\"trend_index\";s:2:\"52\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:78;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:2:\"92\";s:16:\"popularity_index\";s:2:\"51\";s:11:\"trend_index\";s:3:\"134\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:79;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:2:\"93\";s:16:\"popularity_index\";s:2:\"10\";s:11:\"trend_index\";s:2:\"13\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:80;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:2:\"94\";s:16:\"popularity_index\";s:2:\"17\";s:11:\"trend_index\";s:2:\"16\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:81;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:2:\"95\";s:16:\"popularity_index\";s:3:\"344\";s:11:\"trend_index\";s:3:\"365\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:82;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:2:\"96\";s:16:\"popularity_index\";s:2:\"30\";s:11:\"trend_index\";s:2:\"64\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:83;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:2:\"97\";s:16:\"popularity_index\";s:2:\"14\";s:11:\"trend_index\";s:2:\"23\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:84;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:2:\"98\";s:16:\"popularity_index\";s:3:\"300\";s:11:\"trend_index\";s:3:\"369\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:85;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:2:\"99\";s:16:\"popularity_index\";s:3:\"275\";s:11:\"trend_index\";s:3:\"256\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:86;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:\"100\";s:16:\"popularity_index\";s:3:\"207\";s:11:\"trend_index\";s:3:\"379\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:87;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:\"101\";s:16:\"popularity_index\";s:3:\"239\";s:11:\"trend_index\";s:3:\"298\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:88;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:\"102\";s:16:\"popularity_index\";s:3:\"266\";s:11:\"trend_index\";s:3:\"419\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:89;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:\"103\";s:16:\"popularity_index\";s:2:\"36\";s:11:\"trend_index\";s:2:\"78\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:90;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:3:\"104\";s:16:\"popularity_index\";s:2:\"22\";s:11:\"trend_index\";s:2:\"35\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:91;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:3:\"105\";s:16:\"popularity_index\";s:3:\"183\";s:11:\"trend_index\";s:3:\"313\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:92;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:3:\"106\";s:16:\"popularity_index\";s:3:\"228\";s:11:\"trend_index\";s:3:\"294\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:93;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:3:\"107\";s:16:\"popularity_index\";s:3:\"254\";s:11:\"trend_index\";s:3:\"344\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:94;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:3:\"108\";s:16:\"popularity_index\";s:3:\"231\";s:11:\"trend_index\";s:3:\"316\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:95;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:\"109\";s:16:\"popularity_index\";s:2:\"33\";s:11:\"trend_index\";s:2:\"60\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:96;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:\"110\";s:16:\"popularity_index\";s:2:\"16\";s:11:\"trend_index\";s:2:\"19\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:97;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:\"111\";s:16:\"popularity_index\";s:3:\"177\";s:11:\"trend_index\";s:3:\"178\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:98;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:\"112\";s:16:\"popularity_index\";s:2:\"27\";s:11:\"trend_index\";s:2:\"29\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:99;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:\"113\";s:16:\"popularity_index\";s:3:\"279\";s:11:\"trend_index\";s:3:\"366\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:100;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:\"114\";s:16:\"popularity_index\";s:3:\"330\";s:11:\"trend_index\";s:3:\"398\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:101;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:\"115\";s:16:\"popularity_index\";s:2:\"37\";s:11:\"trend_index\";s:2:\"68\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:102;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:\"116\";s:16:\"popularity_index\";s:3:\"326\";s:11:\"trend_index\";s:3:\"418\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:103;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:\"117\";s:16:\"popularity_index\";s:2:\"39\";s:11:\"trend_index\";s:2:\"56\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:104;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:\"118\";s:16:\"popularity_index\";s:3:\"178\";s:11:\"trend_index\";s:3:\"387\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:105;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:\"119\";s:16:\"popularity_index\";s:2:\"65\";s:11:\"trend_index\";s:3:\"104\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:106;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:\"120\";s:16:\"popularity_index\";s:3:\"180\";s:11:\"trend_index\";s:3:\"253\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:107;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:\"121\";s:16:\"popularity_index\";s:3:\"301\";s:11:\"trend_index\";s:3:\"407\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:108;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:\"122\";s:16:\"popularity_index\";s:3:\"179\";s:11:\"trend_index\";s:3:\"304\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:109;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:\"123\";s:16:\"popularity_index\";s:3:\"181\";s:11:\"trend_index\";s:3:\"204\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:110;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:\"124\";s:16:\"popularity_index\";s:3:\"340\";s:11:\"trend_index\";s:3:\"248\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:111;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:\"125\";s:16:\"popularity_index\";s:3:\"210\";s:11:\"trend_index\";s:3:\"230\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:112;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:\"126\";s:16:\"popularity_index\";s:3:\"288\";s:11:\"trend_index\";s:3:\"287\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:113;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:\"127\";s:16:\"popularity_index\";s:3:\"233\";s:11:\"trend_index\";s:3:\"300\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:114;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:\"128\";s:16:\"popularity_index\";s:3:\"336\";s:11:\"trend_index\";s:3:\"423\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:115;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:\"129\";s:16:\"popularity_index\";s:3:\"377\";s:11:\"trend_index\";s:3:\"421\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:116;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:\"130\";s:16:\"popularity_index\";s:3:\"260\";s:11:\"trend_index\";s:3:\"330\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:117;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:\"131\";s:16:\"popularity_index\";s:3:\"324\";s:11:\"trend_index\";s:3:\"392\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:118;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:\"132\";s:16:\"popularity_index\";s:3:\"154\";s:11:\"trend_index\";s:3:\"229\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:119;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:\"133\";s:16:\"popularity_index\";s:3:\"202\";s:11:\"trend_index\";s:3:\"285\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:120;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:\"134\";s:16:\"popularity_index\";s:3:\"235\";s:11:\"trend_index\";s:3:\"218\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:121;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:\"135\";s:16:\"popularity_index\";s:3:\"258\";s:11:\"trend_index\";s:3:\"246\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:122;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:\"136\";s:16:\"popularity_index\";s:3:\"230\";s:11:\"trend_index\";s:3:\"221\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:123;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:\"137\";s:16:\"popularity_index\";s:3:\"252\";s:11:\"trend_index\";s:3:\"357\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:124;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:3:\"138\";s:16:\"popularity_index\";s:3:\"247\";s:11:\"trend_index\";s:3:\"422\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:125;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:3:\"139\";s:16:\"popularity_index\";s:3:\"214\";s:11:\"trend_index\";s:3:\"284\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:126;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:3:\"140\";s:16:\"popularity_index\";s:3:\"217\";s:11:\"trend_index\";s:3:\"223\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:127;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:\"141\";s:16:\"popularity_index\";s:3:\"386\";s:11:\"trend_index\";s:3:\"390\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:128;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:\"142\";s:16:\"popularity_index\";s:3:\"368\";s:11:\"trend_index\";s:3:\"318\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:129;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:\"143\";s:16:\"popularity_index\";s:3:\"329\";s:11:\"trend_index\";s:3:\"375\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:130;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:\"144\";s:16:\"popularity_index\";s:3:\"312\";s:11:\"trend_index\";s:3:\"410\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:131;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:\"145\";s:16:\"popularity_index\";s:3:\"317\";s:11:\"trend_index\";s:3:\"352\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:132;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:\"146\";s:16:\"popularity_index\";s:3:\"396\";s:11:\"trend_index\";s:3:\"416\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:133;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:\"147\";s:16:\"popularity_index\";s:3:\"388\";s:11:\"trend_index\";s:3:\"373\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:134;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:\"148\";s:16:\"popularity_index\";s:3:\"362\";s:11:\"trend_index\";s:3:\"317\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:135;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:\"149\";s:16:\"popularity_index\";s:3:\"360\";s:11:\"trend_index\";s:3:\"307\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:136;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:\"150\";s:16:\"popularity_index\";s:3:\"303\";s:11:\"trend_index\";s:3:\"345\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:137;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:\"151\";s:16:\"popularity_index\";s:3:\"333\";s:11:\"trend_index\";s:3:\"343\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:138;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:\"152\";s:16:\"popularity_index\";s:2:\"13\";s:11:\"trend_index\";s:2:\"22\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}}','no'),(459,'_elementor_global_css','a:3:{s:4:\"time\";i:1521219957;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:12;s:11:\"Roboto Slab\";}s:6:\"status\";s:4:\"file\";}','yes'),(658,'elementor_debug_log','a:3:{i:0;a:7:{s:4:\"type\";s:9:\"TypeError\";s:9:\"timestamp\";s:10:\"1521231653\";s:7:\"message\";s:51:\"undefined is not an object (evaluating \\\'j.style\\\')\";s:3:\"url\";s:56:\"http://moto-noto.com/wp-admin/js/editor.min.js?ver=4.9.4\";s:4:\"line\";s:1:\"1\";s:6:\"column\";s:3:\"693\";s:12:\"customFields\";a:0:{}}i:1;a:8:{s:4:\"type\";s:9:\"TypeError\";s:9:\"timestamp\";s:10:\"1521555534\";s:7:\"message\";s:125:\"jQuery(this).strongSlider is not a function. (In \\\'jQuery(this).strongSlider()\\\', \\\'jQuery(this).strongSlider\\\' is undefined)\";s:3:\"url\";s:98:\"http://moto-noto.com/wp-content/plugins/strong-testimonials/public/js/controller.min.js?ver=2.30.3\";s:4:\"line\";s:1:\"1\";s:6:\"column\";s:3:\"857\";s:12:\"customFields\";a:0:{}s:5:\"times\";i:11;}i:2;a:7:{s:4:\"type\";s:9:\"TypeError\";s:9:\"timestamp\";s:10:\"1521830627\";s:7:\"message\";s:125:\"jQuery(this).strongSlider is not a function. (In \\\'jQuery(this).strongSlider()\\\', \\\'jQuery(this).strongSlider\\\' is undefined)\";s:3:\"url\";s:98:\"http://moto-noto.com/wp-content/plugins/strong-testimonials/public/js/controller.min.js?ver=2.30.4\";s:4:\"line\";s:1:\"1\";s:6:\"column\";s:3:\"857\";s:12:\"customFields\";a:0:{}}}','yes'),(407,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:63:\"Introducing Navigator: Manage Your Entire Layout From One Place\";s:7:\"excerpt\";s:127:\"Navigator is here! Get an overview of your entire page from one place and easily switch between sections, columns, and widgets.\";s:7:\"created\";s:10:\"1535445012\";s:5:\"badge\";s:3:\"New\";s:3:\"url\";s:116:\"https://elementor.com/introducing-navigator/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:72:\"Introducing WooCommerce Builder: the New Way to Build eCommerce Websites\";s:7:\"excerpt\";s:122:\"Elementor introduces WooCommerce Builder - a new streamlined way to build online stores visually and more efficiently. ​\";s:7:\"created\";s:10:\"1534159321\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:126:\"https://elementor.com/introducing-woocommerce-builder/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:59:\"How to Create a Custom WordPress Dashboard for Your Clients\";s:7:\"excerpt\";s:175:\"Creating a personalized dashboard for your clients will help them get the most from their site. In this post, we\'ll show you how to do it with Elementor and a new free add-on.\";s:7:\"created\";s:10:\"1534155272\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:111:\"https://elementor.com/custom-dashboard/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(412,'_elementor_settings_update_time','1521218302','yes'),(413,'elementor_cpt_support','a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:15:\"wpm-testimonial\";}','yes'),(414,'elementor_exclude_user_roles','a:0:{}','yes'),(415,'elementor_disable_color_schemes','','yes'),(416,'elementor_disable_typography_schemes','','yes'),(417,'elementor_allow_tracking','no','yes'),(418,'elementor_default_generic_fonts','Sans-serif','yes'),(419,'elementor_container_width','','yes'),(420,'elementor_space_between_widgets','','yes'),(421,'elementor_stretched_section_container','','yes'),(422,'elementor_page_title_selector','','yes'),(423,'elementor_global_image_lightbox','yes','yes'),(424,'elementor_css_print_method','external','yes'),(425,'elementor_editor_break_lines','','yes'),(428,'elementor_scheme_color','a:4:{i:1;s:7:\"#747476\";i:2;s:7:\"#ebca41\";i:3;s:7:\"#6f1683\";i:4;s:7:\"#a43cbd\";}','yes'),(429,'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'),(430,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#747476\";i:2;s:7:\"#ebca41\";i:3;s:7:\"#6f1683\";i:4;s:7:\"#a43cbd\";i:5;s:7:\"#9c9ea6\";i:6;s:7:\"#c184d0\";i:7;s:7:\"#000000\";i:8;s:7:\"#ffffff\";}','yes'),(442,'theme_mods_twentyfifteen','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:16;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(452,'_elementor_scheme_last_updated','1521219764','yes'),(550,'nav_menu_options','a:1:{s:8:\"auto_add\";a:1:{i:0;i:16;}}','yes'),(1517,'wpforms_preview_page','163','yes'),(1518,'wpforms_settings','a:3:{s:14:\"recaptcha-type\";s:2:\"v2\";s:18:\"recaptcha-site-key\";s:0:\"\";s:20:\"recaptcha-secret-key\";s:0:\"\";}','yes'),(51546,'_transient_timeout_external_ip_address_23.21.138.70','1553307316','no'),(51754,'_site_transient_timeout_theme_roots','1565204640','no'),(51755,'_site_transient_theme_roots','a:5:{s:12:\"featuredlite\";s:7:\"/themes\";s:14:\"one-page-power\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(50581,'_transient_timeout_external_ip_address_35.205.121.90','1552797389','no'),(50582,'_transient_external_ip_address_35.205.121.90','198.46.81.37','no'),(50577,'_transient_timeout_external_ip_address_138.197.166.142','1552797129','no'),(50578,'_transient_external_ip_address_138.197.166.142','198.46.81.37','no'),(50778,'_transient_timeout_external_ip_address_34.80.2.167','1552964456','no'),(50779,'_transient_external_ip_address_34.80.2.167','198.46.81.37','no'),(50766,'_transient_external_ip_address_209.213.221.180','198.46.81.37','no'),(50770,'_transient_timeout_external_ip_address_128.177.10.252','1552962860','no'),(50771,'_transient_external_ip_address_128.177.10.252','198.46.81.37','no'),(50765,'_transient_timeout_external_ip_address_209.213.221.180','1552953366','no'),(50757,'_transient_external_ip_address_211.48.9.120','198.46.81.37','no'),(50763,'_transient_timeout_external_ip_address_47.92.250.223','1552952706','no'),(50756,'_transient_timeout_external_ip_address_211.48.9.120','1552948958','no'),(50846,'_transient_external_ip_address_185.130.184.216','198.46.81.37','no'),(50764,'_transient_external_ip_address_47.92.250.223','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50749,'_transient_timeout_external_ip_address_185.220.101.33','1552943408','no'),(50750,'_transient_external_ip_address_185.220.101.33','198.46.81.37','no'),(50747,'_transient_timeout_external_ip_address_209.95.51.11','1552943405','no'),(50748,'_transient_external_ip_address_209.95.51.11','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51623,'_transient_external_ip_address_85.248.227.163','198.46.81.37','no'),(51625,'_transient_timeout_external_ip_address_158.69.243.5','1553336326','no'),(51520,'_transient_timeout_external_ip_address_46.119.112.76','1553300608','no'),(51521,'_transient_external_ip_address_46.119.112.76','198.46.81.37','no'),(51524,'_transient_timeout_external_ip_address_23.235.220.199','1553301292','no'),(51621,'_transient_external_ip_address_195.3.144.185','198.46.81.37','no'),(51622,'_transient_timeout_external_ip_address_85.248.227.163','1553334017','no'),(51619,'_transient_external_ip_address_195.176.3.23','198.46.81.37','no'),(51620,'_transient_timeout_external_ip_address_195.3.144.185','1553333511','no'),(51614,'_transient_external_ip_address_185.222.202.153','198.46.81.37','no'),(51618,'_transient_timeout_external_ip_address_195.176.3.23','1553333380','no'),(51611,'_transient_timeout_external_ip_address_178.17.171.114','1553330529','no'),(51612,'_transient_external_ip_address_178.17.171.114','198.46.81.37','no'),(51613,'_transient_timeout_external_ip_address_185.222.202.153','1553332921','no'),(51608,'_transient_external_ip_address_106.14.176.162','198.46.81.37','no'),(51609,'_transient_timeout_external_ip_address_185.104.120.60','1553330521','no'),(51610,'_transient_external_ip_address_185.104.120.60','198.46.81.37','no'),(51603,'_transient_timeout_external_ip_address_171.25.193.25','1553329256','no'),(51604,'_transient_external_ip_address_171.25.193.25','198.46.81.37','no'),(51607,'_transient_timeout_external_ip_address_106.14.176.162','1553330195','no'),(51596,'_transient_external_ip_address_85.172.54.45','198.46.81.37','no'),(51597,'_transient_timeout_external_ip_address_138.68.180.18','1553327867','no'),(51598,'_transient_external_ip_address_138.68.180.18','198.46.81.37','no'),(51595,'_transient_timeout_external_ip_address_85.172.54.45','1553327166','no'),(51589,'_transient_external_ip_address_190.186.216.49','198.46.81.37','no'),(51593,'_transient_timeout_external_ip_address_52.66.98.233','1553325507','no'),(51594,'_transient_external_ip_address_52.66.98.233','198.46.81.37','no'),(51588,'_transient_timeout_external_ip_address_190.186.216.49','1553323358','no'),(51587,'_transient_external_ip_address_34.210.77.236','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51586,'_transient_timeout_external_ip_address_34.210.77.236','1553323158','no'),(51584,'_transient_timeout_external_ip_address_34.222.124.196','1553323156','no'),(51585,'_transient_external_ip_address_34.222.124.196','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51582,'_transient_timeout_external_ip_address_51.15.80.14','1553323151','no'),(51583,'_transient_external_ip_address_51.15.80.14','198.46.81.37','no'),(51577,'_transient_timeout_external_ip_address_94.177.226.160','1553321425','no'),(51578,'_transient_external_ip_address_94.177.226.160','198.46.81.37','no'),(51575,'_transient_timeout_external_ip_address_85.248.227.165','1553320879','no'),(51576,'_transient_external_ip_address_85.248.227.165','198.46.81.37','no'),(51571,'_transient_external_ip_address_39.104.124.239','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51570,'_transient_timeout_external_ip_address_39.104.124.239','1553318794','no'),(51566,'_transient_timeout_external_ip_address_109.70.100.19','1553318675','no'),(51567,'_transient_external_ip_address_109.70.100.19','198.46.81.37','no'),(51563,'_transient_timeout_external_ip_address_185.100.86.128','1553317424','no'),(51564,'_transient_external_ip_address_185.100.86.128','198.46.81.37','no'),(51555,'_transient_timeout_external_ip_address_35.178.29.212','1553310139','no'),(51556,'_transient_external_ip_address_35.178.29.212','198.46.81.37','no'),(51557,'_transient_timeout_external_ip_address_118.69.195.134','1553310584','no'),(51558,'_transient_external_ip_address_118.69.195.134','198.46.81.37','no'),(51550,'_transient_timeout_external_ip_address_51.68.85.163','1553309264','no'),(51551,'_transient_external_ip_address_51.68.85.163','198.46.81.37','no'),(51552,'_transient_timeout_external_ip_address_46.118.153.188','1553310044','no'),(51553,'_transient_external_ip_address_46.118.153.188','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51741,'_transient_external_ip_address_139.99.160.111','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51744,'_transient_timeout_external_ip_address_66.249.146.235','1553393377','no'),(51745,'_transient_external_ip_address_66.249.146.235','198.46.81.37','no'),(51749,'_transient_timeout_external_ip_address_40.77.189.77','1553394395','no'),(51750,'_transient_external_ip_address_40.77.189.77','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50732,'_transient_external_ip_address_187.57.230.70','198.46.81.37','no'),(50733,'_transient_timeout_external_ip_address_121.66.93.195','1552936402','no'),(50734,'_transient_external_ip_address_121.66.93.195','198.46.81.37','no'),(50741,'_transient_timeout_external_ip_address_121.78.85.49','1552940375','no'),(50742,'_transient_external_ip_address_121.78.85.49','198.46.81.37','no'),(50726,'_transient_timeout_external_ip_address_199.195.252.246','1552933986','no'),(50727,'_transient_external_ip_address_199.195.252.246','198.46.81.37','no'),(50731,'_transient_timeout_external_ip_address_187.57.230.70','1552935645','no'),(50712,'_transient_external_ip_address_45.40.143.13','198.46.81.37','no'),(50716,'_transient_timeout_external_ip_address_47.92.6.199','1552927305','no'),(50709,'_transient_external_ip_address_5.196.97.244','198.46.81.37','no'),(50711,'_transient_timeout_external_ip_address_45.40.143.13','1552926194','no'),(50717,'_transient_external_ip_address_47.92.6.199','198.46.81.37','no'),(50694,'_transient_timeout_external_ip_address_47.199.65.114','1552918648','no'),(50695,'_transient_external_ip_address_47.199.65.114','198.46.81.37','no'),(50708,'_transient_timeout_external_ip_address_5.196.97.244','1552925474','no'),(50691,'_transient_timeout_external_ip_address_100.35.75.170','1552911377','no'),(50692,'_transient_external_ip_address_100.35.75.170','198.46.81.37','no'),(50681,'_transient_external_ip_address_172.58.175.184','198.46.81.37','no'),(50689,'_transient_timeout_external_ip_address_161.117.10.46','1552911329','no'),(50690,'_transient_external_ip_address_161.117.10.46','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50672,'_transient_external_ip_address_217.61.97.229','198.46.81.37','no'),(51326,'_transient_external_ip_address_178.128.233.222','198.46.81.37','no'),(51333,'_transient_timeout_external_ip_address_168.25.48.19','1553224312','no'),(51738,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1552785904;s:7:\"checked\";a:5:{s:12:\"featuredlite\";s:5:\"1.1.2\";s:14:\"one-page-power\";s:3:\"1.0\";s:13:\"twentyfifteen\";s:3:\"1.9\";s:15:\"twentyseventeen\";s:3:\"1.4\";s:13:\"twentysixteen\";s:3:\"1.4\";}s:8:\"response\";a:4:{s:12:\"featuredlite\";a:4:{s:5:\"theme\";s:12:\"featuredlite\";s:11:\"new_version\";s:5:\"1.2.6\";s:3:\"url\";s:42:\"https://wordpress.org/themes/featuredlite/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/featuredlite.1.2.6.zip\";}s:13:\"twentyfifteen\";a:4:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.2.4.zip\";}s:15:\"twentyseventeen\";a:4:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.2.1.zip\";}s:13:\"twentysixteen\";a:4:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.1.9.zip\";}}s:12:\"translations\";a:0:{}}','no'),(51739,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1565202885;s:7:\"checked\";a:11:{s:19:\"akismet/akismet.php\";s:5:\"4.0.3\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:6:\"1.0.11\";s:23:\"elementor/elementor.php\";s:5:\"1.9.8\";s:33:\"google-captcha/google-captcha.php\";s:4:\"1.36\";s:9:\"hello.php\";s:3:\"1.6\";s:39:\"lead-form-builder/lead-form-builder.php\";s:5:\"1.3.1\";s:43:\"strong-testimonials/strong-testimonials.php\";s:6:\"2.30.4\";s:45:\"themehunk-customizer/themehunk-customizer.php\";s:6:\"2.0.24\";s:37:\"user-role-editor/user-role-editor.php\";s:6:\"4.40.1\";s:27:\"woocommerce/woocommerce.php\";s:5:\"3.3.3\";s:24:\"wpforms-lite/wpforms.php\";s:7:\"1.4.5.2\";}s:8:\"response\";a:11:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{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.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.2.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:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:51:\"header-footer-elementor/header-footer-elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:37:\"w.org/plugins/header-footer-elementor\";s:4:\"slug\";s:23:\"header-footer-elementor\";s:6:\"plugin\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:11:\"new_version\";s:5:\"1.1.2\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/header-footer-elementor/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/header-footer-elementor.1.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2017489\";s:3:\"svg\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2017489\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/header-footer-elementor/assets/banner-1544x500.jpg?rev=2017486\";s:2:\"1x\";s:78:\"https://ps.w.org/header-footer-elementor/assets/banner-772x250.jpg?rev=2017486\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.0.4\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"2.6.8\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.2.6.8.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:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:33:\"google-captcha/google-captcha.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/google-captcha\";s:4:\"slug\";s:14:\"google-captcha\";s:6:\"plugin\";s:33:\"google-captcha/google-captcha.php\";s:11:\"new_version\";s:4:\"1.50\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/google-captcha/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/google-captcha.1.50.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/google-captcha/assets/icon-256x256.png?rev=1637676\";s:2:\"1x\";s:67:\"https://ps.w.org/google-captcha/assets/icon-128x128.png?rev=1637676\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/google-captcha/assets/banner-1544x500.jpg?rev=1590656\";s:2:\"1x\";s:69:\"https://ps.w.org/google-captcha/assets/banner-772x250.jpg?rev=1590656\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:9:\"hello.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:39:\"lead-form-builder/lead-form-builder.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:31:\"w.org/plugins/lead-form-builder\";s:4:\"slug\";s:17:\"lead-form-builder\";s:6:\"plugin\";s:39:\"lead-form-builder/lead-form-builder.php\";s:11:\"new_version\";s:5:\"1.4.4\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/lead-form-builder/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/lead-form-builder.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/lead-form-builder/assets/icon-256x256.png?rev=1432162\";s:2:\"1x\";s:70:\"https://ps.w.org/lead-form-builder/assets/icon-128x128.png?rev=2122484\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/lead-form-builder/assets/banner-772x250.png?rev=2122484\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:43:\"strong-testimonials/strong-testimonials.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:33:\"w.org/plugins/strong-testimonials\";s:4:\"slug\";s:19:\"strong-testimonials\";s:6:\"plugin\";s:43:\"strong-testimonials/strong-testimonials.php\";s:11:\"new_version\";s:6:\"2.39.2\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/strong-testimonials/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/strong-testimonials.2.39.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/strong-testimonials/assets/icon-256x256.png?rev=2086584\";s:2:\"1x\";s:72:\"https://ps.w.org/strong-testimonials/assets/icon-256x256.png?rev=2086584\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:74:\"https://ps.w.org/strong-testimonials/assets/banner-772x250.png?rev=2086584\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";s:3:\"5.6\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:45:\"themehunk-customizer/themehunk-customizer.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:34:\"w.org/plugins/themehunk-customizer\";s:4:\"slug\";s:20:\"themehunk-customizer\";s:6:\"plugin\";s:45:\"themehunk-customizer/themehunk-customizer.php\";s:11:\"new_version\";s:6:\"2.1.10\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/themehunk-customizer/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/themehunk-customizer.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/themehunk-customizer/assets/icon-128x128.png?rev=1634027\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:75:\"https://ps.w.org/themehunk-customizer/assets/banner-772x250.jpg?rev=1634027\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:37:\"user-role-editor/user-role-editor.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:30:\"w.org/plugins/user-role-editor\";s:4:\"slug\";s:16:\"user-role-editor\";s:6:\"plugin\";s:37:\"user-role-editor/user-role-editor.php\";s:11:\"new_version\";s:6:\"4.51.2\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/user-role-editor/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/user-role-editor.4.51.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/user-role-editor/assets/icon-256x256.jpg?rev=1020390\";s:2:\"1x\";s:69:\"https://ps.w.org/user-role-editor/assets/icon-128x128.jpg?rev=1020390\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/user-role-editor/assets/banner-772x250.png?rev=1263116\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";s:3:\"5.5\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"3.6.5\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.6.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=2075035\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=2075035\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=2075035\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=2075035\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:24:\"wpforms-lite/wpforms.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/wpforms-lite\";s:4:\"slug\";s:12:\"wpforms-lite\";s:6:\"plugin\";s:24:\"wpforms-lite/wpforms.php\";s:11:\"new_version\";s:7:\"1.5.4.2\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wpforms-lite/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wpforms-lite.1.5.4.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-256x256.png?rev=1371112\";s:2:\"1x\";s:65:\"https://ps.w.org/wpforms-lite/assets/icon-128x128.png?rev=1371112\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wpforms-lite/assets/banner-1544x500.png?rev=1371112\";s:2:\"1x\";s:67:\"https://ps.w.org/wpforms-lite/assets/banner-772x250.png?rev=1371112\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.2.2\";s:12:\"requires_php\";s:5:\"5.3.3\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:0:{}}','no'),(50958,'_transient_timeout_external_ip_address_31.184.238.169','1553055854','no'),(50959,'_transient_external_ip_address_31.184.238.169','198.46.81.37','no'),(50965,'_transient_timeout_external_ip_address_31.184.238.185','1553057393','no'),(50963,'_transient_timeout_external_ip_address_128.199.250.221','1553056855','no'),(50964,'_transient_external_ip_address_128.199.250.221','198.46.81.37','no'),(50966,'_transient_external_ip_address_31.184.238.185','198.46.81.37','no'),(51543,'_transient_timeout_external_ip_address_91.205.239.219','1553306314','no'),(51544,'_transient_external_ip_address_91.205.239.219','198.46.81.37','no'),(5255,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:19:\"admin@moto-noto.com\";s:7:\"version\";s:6:\"4.9.10\";s:9:\"timestamp\";i:1552446847;}','no'),(51332,'_transient_external_ip_address_167.114.209.38','198.46.81.37','no'),(51334,'_transient_external_ip_address_168.25.48.19','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51348,'_transient_timeout_external_ip_address_61.160.221.73','1553231181','no'),(51341,'_transient_timeout_external_ip_address_78.85.157.84','1553227611','no'),(51342,'_transient_external_ip_address_78.85.157.84','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51349,'_transient_external_ip_address_61.160.221.73','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51353,'_transient_timeout_external_ip_address_185.189.113.42','1553233371','no'),(51354,'_transient_external_ip_address_185.189.113.42','198.46.81.37','no'),(51365,'_transient_timeout_external_ip_address_37.58.150.203','1553238816','no'),(51366,'_transient_external_ip_address_37.58.150.203','198.46.81.37','no'),(51367,'_transient_timeout_external_ip_address_136.169.243.12','1553239467','no'),(51368,'_transient_external_ip_address_136.169.243.12','198.46.81.37','no'),(51369,'_transient_timeout_external_ip_address_149.202.89.8','1553239671','no'),(51370,'_transient_external_ip_address_149.202.89.8','198.46.81.37','no'),(51374,'_transient_timeout_external_ip_address_188.209.49.164','1553242431','no'),(51375,'_transient_external_ip_address_188.209.49.164','198.46.81.37','no'),(51383,'_transient_timeout_external_ip_address_34.219.174.22','1553245930','no'),(51384,'_transient_external_ip_address_34.219.174.22','198.46.81.37','no'),(51385,'_transient_timeout_external_ip_address_54.188.58.16','1553245930','no'),(51386,'_transient_external_ip_address_54.188.58.16','198.46.81.37','no'),(51392,'_transient_timeout_external_ip_address_206.189.120.13','1553249758','no'),(51393,'_transient_external_ip_address_206.189.120.13','198.46.81.37','no'),(51394,'_transient_timeout_external_ip_address_195.211.161.92','1553250209','no'),(51395,'_transient_external_ip_address_195.211.161.92','198.46.81.37','no'),(51400,'_transient_timeout_external_ip_address_173.160.139.126','1553252899','no'),(51401,'_transient_external_ip_address_173.160.139.126','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51406,'_transient_timeout_external_ip_address_185.211.245.199','1553255242','no'),(51407,'_transient_external_ip_address_185.211.245.199','198.46.81.37','no'),(51426,'_transient_timeout_external_ip_address_180.76.15.160','1553264191','no'),(51427,'_transient_external_ip_address_180.76.15.160','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51428,'_transient_timeout_external_ip_address_180.76.15.26','1553264191','no'),(51429,'_transient_external_ip_address_180.76.15.26','198.46.81.37','no'),(51439,'_transient_timeout_external_ip_address_216.252.126.74','1553271080','no'),(51440,'_transient_external_ip_address_216.252.126.74','198.46.81.37','no'),(51444,'_transient_timeout_external_ip_address_118.163.216.107','1553272969','no'),(51445,'_transient_external_ip_address_118.163.216.107','198.46.81.37','no'),(51458,'_transient_timeout_external_ip_address_40.77.189.22','1553279935','no'),(51459,'_transient_external_ip_address_40.77.189.22','198.46.81.37','no'),(51460,'_transient_timeout_external_ip_address_77.94.121.51','1553280049','no'),(51461,'_transient_external_ip_address_77.94.121.51','198.46.81.37','no'),(51462,'_transient_timeout_external_ip_address_185.130.184.243','1553280051','no'),(51463,'_transient_external_ip_address_185.130.184.243','198.46.81.37','no'),(51464,'_transient_timeout_external_ip_address_192.99.35.63','1553280342','no'),(51465,'_transient_external_ip_address_192.99.35.63','198.46.81.37','no'),(51466,'_transient_timeout_external_ip_address_46.166.143.119','1553281258','no'),(51467,'_transient_external_ip_address_46.166.143.119','198.46.81.37','no'),(51475,'_transient_timeout_external_ip_address_85.214.193.71','1553282230','no'),(51471,'_transient_timeout_external_ip_address_89.28.3.220','1553281831','no'),(51472,'_transient_external_ip_address_89.28.3.220','198.46.81.37','no'),(51473,'_transient_timeout_external_ip_address_46.173.55.27','1553281916','no'),(51474,'_transient_external_ip_address_46.173.55.27','198.46.81.37','no'),(51476,'_transient_external_ip_address_85.214.193.71','198.46.81.37','no'),(51479,'_transient_timeout_external_ip_address_191.241.39.10','1553284718','no'),(51480,'_transient_external_ip_address_191.241.39.10','198.46.81.37','no'),(51484,'_transient_timeout_external_ip_address_94.139.224.152','1553285914','no'),(51485,'_transient_external_ip_address_94.139.224.152','198.46.81.37','no'),(51490,'_transient_timeout_external_ip_address_139.99.21.240','1553289033','no'),(51491,'_transient_external_ip_address_139.99.21.240','198.46.81.37','no'),(51496,'_transient_timeout_external_ip_address_91.230.25.106','1553289873','no'),(51497,'_transient_external_ip_address_91.230.25.106','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51500,'_transient_timeout_external_ip_address_142.93.44.49','1553291815','no'),(51501,'_transient_external_ip_address_142.93.44.49','198.46.81.37','no'),(51502,'_transient_timeout_external_ip_address_195.3.144.219','1553291824','no'),(51503,'_transient_external_ip_address_195.3.144.219','198.46.81.37','no'),(51517,'_transient_timeout_external_ip_address_110.83.60.12','1553300182','no'),(51518,'_transient_external_ip_address_110.83.60.12','198.46.81.37','no'),(51525,'_transient_external_ip_address_23.235.220.199','198.46.81.37','no'),(51527,'_transient_timeout_external_ip_address_95.211.186.147','1553301967','no'),(51528,'_transient_external_ip_address_95.211.186.147','198.46.81.37','no'),(51532,'_transient_timeout_external_ip_address_62.210.185.4','1553304045','no'),(51533,'_transient_external_ip_address_62.210.185.4','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51538,'_transient_timeout_external_ip_address_125.253.112.34','1553305968','no'),(51666,'_transient_external_ip_address_178.17.174.229','198.46.81.37','no'),(51667,'_transient_timeout_external_ip_address_207.180.226.67','1553348753','no'),(51668,'_transient_external_ip_address_207.180.226.67','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51672,'_transient_timeout_external_ip_address_211.93.3.131','1553349564','no'),(51673,'_transient_timeout_external_ip_address_62.245.65.232','1553349564','no'),(51674,'_transient_external_ip_address_211.93.3.131','198.46.81.37','no'),(51675,'_transient_external_ip_address_62.245.65.232','198.46.81.37','no'),(51676,'_transient_timeout_external_ip_address_180.164.168.18','1553349565','no'),(51677,'_transient_external_ip_address_180.164.168.18','198.46.81.37','no'),(51683,'_transient_timeout_external_ip_address_192.160.102.164','1553353150','no'),(51681,'_transient_timeout_external_ip_address_188.166.9.235','1553352511','no'),(51682,'_transient_external_ip_address_188.166.9.235','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51684,'_transient_external_ip_address_192.160.102.164','198.46.81.37','no'),(51685,'_transient_timeout_external_ip_address_62.73.58.193','1553357283','no'),(51686,'_transient_external_ip_address_62.73.58.193','198.46.81.37','no'),(51694,'_transient_timeout_external_ip_address_180.131.2.18','1553361431','no'),(51690,'_transient_timeout_external_ip_address_18.202.77.198','1553360013','no'),(51691,'_transient_external_ip_address_18.202.77.198','198.46.81.37','no'),(51695,'_transient_external_ip_address_180.131.2.18','198.46.81.37','no'),(51697,'_transient_timeout_external_ip_address_94.177.226.79','1553362254','no'),(51698,'_transient_external_ip_address_94.177.226.79','198.46.81.37','no'),(51701,'_transient_timeout_external_ip_address_62.210.80.74','1553362569','no'),(51702,'_transient_external_ip_address_62.210.80.74','198.46.81.37','no'),(51712,'_transient_timeout_external_ip_address_168.0.134.40','1553372462','no'),(51713,'_transient_external_ip_address_168.0.134.40','198.46.81.37','no'),(51719,'_transient_timeout_external_ip_address_132.148.22.31','1553379769','no'),(51720,'_transient_external_ip_address_132.148.22.31','198.46.81.37','no'),(51723,'_transient_timeout_external_ip_address_185.4.30.230','1553383780','no'),(51724,'_transient_external_ip_address_185.4.30.230','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(51728,'_transient_timeout_external_ip_address_180.211.95.82','1553386355','no'),(51729,'_transient_external_ip_address_180.211.95.82','198.46.81.37','no'),(51740,'_transient_timeout_external_ip_address_139.99.160.111','1553391120','no'),(50494,'_transient_external_ip_address_69.55.60.107','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50492,'_transient_external_ip_address_185.50.197.159','198.46.81.37','no'),(50493,'_transient_timeout_external_ip_address_69.55.60.107','1552789682','no'),(50491,'_transient_timeout_external_ip_address_185.50.197.159','1552789404','no'),(50490,'_transient_external_ip_address_203.128.6.224','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50489,'_transient_timeout_external_ip_address_203.128.6.224','1552789087','no'),(51142,'_transient_timeout_external_ip_address_117.2.46.21','1553136870','no'),(50488,'_transient_external_ip_address_104.238.80.144','198.46.81.37','no'),(50485,'_transient_timeout_external_ip_address_40.112.91.139','1552788706','no'),(50486,'_transient_external_ip_address_40.112.91.139','198.46.81.37','no'),(50483,'_transient_external_ip_address_45.76.74.53','503 Over Quota Error &nbsp; Over Quota This application is temporarily over its serving quota. Please try again later.','no'),(50487,'_transient_timeout_external_ip_address_104.238.80.144','1552788896','no'),(50478,'_transient_timeout_external_ip_address_178.33.194.152','1552788361','no'),(50479,'_transient_external_ip_address_178.33.194.152','198.46.81.37','no'),(50480,'_transient_timeout_external_ip_address_139.99.156.119','1552788507','no'),(50481,'_transient_external_ip_address_139.99.156.119','198.46.81.37','no'),(50474,'_transient_external_ip_address_142.93.68.167','198.46.81.37','no'),(50476,'_transient_external_ip_address_35.197.169.32','198.46.81.37','no'),(50482,'_transient_timeout_external_ip_address_45.76.74.53','1552788510','no'),(50475,'_transient_timeout_external_ip_address_35.197.169.32','1552788339','no'),(51272,'_transient_external_ip_address_52.89.0.162','198.46.81.37','no'),(50467,'_transient_timeout_external_ip_address_52.65.131.46','1552787494','no'),(50468,'_transient_external_ip_address_52.65.131.46','198.46.81.37','no'),(50471,'_transient_timeout_external_ip_address_192.99.106.61','1552788171','no'),(50472,'_transient_external_ip_address_192.99.106.61','198.46.81.37','no'),(50473,'_transient_timeout_external_ip_address_142.93.68.167','1552788291','no'),(50464,'_transient_external_ip_address_23.89.144.101','198.46.81.37','no'),(50465,'_transient_timeout_external_ip_address_132.148.197.61','1552787078','no'),(50466,'_transient_external_ip_address_132.148.197.61','198.46.81.37','no'),(50463,'_transient_timeout_external_ip_address_23.89.144.101','1552786760','no'),(50461,'_transient_timeout_external_ip_address_104.248.1.71','1552786263','no'),(50462,'_transient_external_ip_address_104.248.1.71','198.46.81.37','no'),(50460,'_transient_external_ip_address_27.254.142.196','198.46.81.37','no'),(50458,'_transient_external_ip_address_163.44.193.95','198.46.81.37','no'),(50459,'_transient_timeout_external_ip_address_27.254.142.196','1552786125','no'),(51539,'_transient_external_ip_address_125.253.112.34','198.46.81.37','no'),(51547,'_transient_external_ip_address_23.21.138.70','198.46.81.37','no'),(51751,'_transient_timeout_external_ip_address_127.0.0.1','1565807638','no'),(51752,'_transient_external_ip_address_127.0.0.1','198.46.81.37','no'),(51753,'_transient_doing_cron','1565202838.5457220077514648437500','yes');
/*!40000 ALTER TABLE `wpct_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpct_postmeta`
--

DROP TABLE IF EXISTS `wpct_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_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=998 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_postmeta`
--

LOCK TABLES `wpct_postmeta` WRITE;
/*!40000 ALTER TABLE `wpct_postmeta` DISABLE KEYS */;
INSERT INTO `wpct_postmeta` VALUES (1,2,'_wp_page_template','default'),(29,13,'_wp_page_template','elementor_canvas'),(32,15,'_wp_attached_file','2018/03/laptop-3196481_1920.jpg'),(33,15,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:31:\"2018/03/laptop-3196481_1920.jpg\";s:5:\"sizes\";a:9:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"laptop-3196481_1920-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"laptop-3196481_1920-350x233.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"laptop-3196481_1920-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"laptop-3196481_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:\"laptop-3196481_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:\"laptop-3196481_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:\"laptop-3196481_1920-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:30:\"twentyseventeen-featured-image\";a:4:{s:4:\"file\";s:33:\"laptop-3196481_1920-1920x1200.jpg\";s:5:\"width\";i:1920;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:32:\"twentyseventeen-thumbnail-avatar\";a:4:{s:4:\"file\";s:31:\"laptop-3196481_1920-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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,15,'_wp_attachment_is_custom_background','one-page-power'),(37,15,'_wp_attachment_custom_header_last_used_one-page-power','1521147095'),(38,15,'_wp_attachment_is_custom_header','one-page-power'),(40,13,'_edit_lock','1521831180:1'),(48,13,'_elementor_edit_mode','builder'),(50,13,'_edit_last','1'),(51,19,'_elementor_edit_mode','builder'),(52,19,'_elementor_css','a:4:{s:4:\"time\";i:1521218668;s:5:\"fonts\";a:0:{}s:6:\"status\";s:5:\"empty\";s:3:\"css\";s:0:\"\";}'),(95,27,'_menu_item_xfn',''),(96,27,'_menu_item_url',''),(64,22,'_elementor_version','0.4'),(63,22,'_elementor_edit_mode','builder'),(62,13,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"(Sarasota, Manatee, and western DeSoto counties and by appointment)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\",\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.8}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"349f797\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"-13\",\"bottom\":\"-13\",\"left\":\"-13\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5c59a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28544c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"TESTIMONIALS\",\"link\":{\"url\":\"#testimonialsheader\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"right\",\"align_mobile\":\"center\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b78e28c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7bc137a\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT ME\",\"link\":{\"url\":\"#contactme\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"left\",\"align_mobile\":\"center\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"text_shadow_text_shadow_type\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to: refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\",\"_element_id\":\"testimonialsheader\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\",\"_element_id\":\"contactme\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"941.447.1258\",\"link\":{\"url\":\"tel:9414471258\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(60,13,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(56,13,'_elementor_version','0.4'),(65,22,'_elementor_page_settings','a:5:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";}'),(66,22,'_elementor_css','a:3:{s:4:\"time\";i:1521219930;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(67,22,'_elementor_data','[]'),(93,27,'_menu_item_target',''),(94,27,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(109,30,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1400;s:6:\"height\";i:934;s:4:\"file\";s:36:\"2018/03/25388715424_65480dbf18_k.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"25388715424_65480dbf18_k-150x150.jpg\";s:5:\"width\";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:\"25388715424_65480dbf18_k-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:36:\"25388715424_65480dbf18_k-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:37:\"25388715424_65480dbf18_k-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:34:\"25388715424_65480dbf18_k-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"25388715424_65480dbf18_k-825x510.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"25388715424_65480dbf18_k-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:36:\"25388715424_65480dbf18_k-350x234.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"25388715424_65480dbf18_k-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:36:\"25388715424_65480dbf18_k-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:36:\"25388715424_65480dbf18_k-350x234.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:234;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"25388715424_65480dbf18_k-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(81,26,'_menu_item_type','custom'),(82,26,'_menu_item_menu_item_parent','0'),(83,26,'_menu_item_object_id','26'),(84,26,'_menu_item_object','custom'),(85,26,'_menu_item_target',''),(86,26,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(87,26,'_menu_item_xfn',''),(88,26,'_menu_item_url','http://moto-noto.com'),(89,27,'_menu_item_type','post_type'),(90,27,'_menu_item_menu_item_parent','0'),(91,27,'_menu_item_object_id','2'),(92,27,'_menu_item_object','page'),(108,30,'_wp_attached_file','2018/03/25388715424_65480dbf18_k.jpg'),(110,30,'_elementor_source_image_hash','39414018d074359e5366ffffb1f9825ca7b3f5a0'),(111,31,'_wp_attached_file','2018/03/zusman.png'),(112,31,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:150;s:4:\"file\";s:18:\"2018/03/zusman.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"zusman-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:16:\"zusman-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"zusman-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"zusman-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"zusman-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"zusman-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(113,31,'_elementor_source_image_hash','b0bbc025e9b9e8245081903559207c5d20249c0e'),(114,32,'_wp_attached_file','2018/03/zing.png'),(115,32,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:150;s:4:\"file\";s:16:\"2018/03/zing.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"zing-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:14:\"zing-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:16:\"zing-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:16:\"zing-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:16:\"zing-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:16:\"zing-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(116,32,'_elementor_source_image_hash','0dc0648ad7a18b0454a9eb79060429b187166d74'),(117,33,'_wp_attached_file','2018/03/madrin.png'),(118,33,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:150;s:4:\"file\";s:18:\"2018/03/madrin.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"madrin-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:16:\"madrin-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"madrin-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"madrin-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"madrin-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"madrin-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(119,33,'_elementor_source_image_hash','42538a975acb126a0fe13f81066994abad0ad7e8'),(120,34,'_wp_attached_file','2018/03/armond-1.png'),(121,34,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:150;s:4:\"file\";s:20:\"2018/03/armond-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"armond-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:18:\"armond-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"armond-1-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"armond-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"armond-1-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"armond-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(122,34,'_elementor_source_image_hash','11ad89f5e9a90250e55b3e6e900e53a781135f1a'),(123,35,'_wp_attached_file','2018/03/x.venox_.png'),(124,35,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:150;s:4:\"file\";s:20:\"2018/03/x.venox_.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"x.venox_-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:18:\"x.venox_-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"x.venox_-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"x.venox_-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"x.venox_-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"x.venox_-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(125,35,'_elementor_source_image_hash','99b558ba64b3719d2135c03f80ef2ff304f7ed4e'),(126,36,'_wp_attached_file','2018/03/geo.png'),(127,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:150;s:4:\"file\";s:15:\"2018/03/geo.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"geo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:13:\"geo-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"geo-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"geo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"geo-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"geo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(128,36,'_elementor_source_image_hash','c83533f623aa9948a221b4c6946ab7df1b455fb8'),(129,37,'_wp_attached_file','2018/03/fifthflour.png'),(130,37,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:150;s:4:\"file\";s:22:\"2018/03/fifthflour.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"fifthflour-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:20:\"fifthflour-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"fifthflour-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"fifthflour-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"fifthflour-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"fifthflour-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(131,37,'_elementor_source_image_hash','ac1412eb92c34db4cba9f0b97ccd232d57b4af89'),(132,38,'_wp_attached_file','2018/03/larozse.png'),(133,38,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:150;s:4:\"file\";s:19:\"2018/03/larozse.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"larozse-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:17:\"larozse-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"larozse-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"larozse-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"larozse-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"larozse-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(134,38,'_elementor_source_image_hash','de1a59c1664f49857e71717eab9be9769f545fde'),(135,39,'_wp_attached_file','2018/03/bolier.png'),(136,39,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:150;s:4:\"file\";s:18:\"2018/03/bolier.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"bolier-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:16:\"bolier-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:18:\"bolier-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:18:\"bolier-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:18:\"bolier-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:18:\"bolier-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(137,39,'_elementor_source_image_hash','03595b1a564dde3bba529cdc084735670f568ec3'),(138,40,'_wp_attached_file','2018/03/mapmaster.png'),(139,40,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:150;s:4:\"file\";s:21:\"2018/03/mapmaster.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"mapmaster-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:19:\"mapmaster-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"mapmaster-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"mapmaster-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"mapmaster-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"mapmaster-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(140,40,'_elementor_source_image_hash','861f364364ca6fcfedb457bac83dcdffb1017edd'),(141,41,'_wp_attached_file','2018/03/darkside.png'),(142,41,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:150;s:4:\"file\";s:20:\"2018/03/darkside.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"darkside-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:18:\"darkside-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"darkside-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"darkside-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"darkside-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"darkside-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(143,41,'_elementor_source_image_hash','fc4595e44bc0590c468f023e580e71b06cbb2b5c'),(144,42,'_wp_attached_file','2018/03/digit.png'),(145,42,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:150;s:4:\"file\";s:17:\"2018/03/digit.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"digit-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:15:\"digit-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"digit-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"digit-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"digit-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"digit-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(146,42,'_elementor_source_image_hash','aeacfffdb61f65dbcb8fdf31622c3654970b0592'),(147,43,'_wp_attached_file','2018/03/col.png'),(148,43,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:150;s:4:\"file\";s:15:\"2018/03/col.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"col-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:13:\"col-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"col-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"col-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"col-200x150.png\";s:5:\"width\";i:200;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"col-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(149,43,'_elementor_source_image_hash','a3289c89219561ccc3a494791e748719d6afad4e'),(150,44,'_wp_attached_file','2018/03/25497478040_140ce47f31_k.jpg'),(151,44,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:36:\"2018/03/25497478040_140ce47f31_k.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"25497478040_140ce47f31_k-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:34:\"25497478040_140ce47f31_k-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"25497478040_140ce47f31_k-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"25497478040_140ce47f31_k-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:36:\"25497478040_140ce47f31_k-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"25497478040_140ce47f31_k-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(152,44,'_elementor_source_image_hash','41738e31ddb595b832897f3df3fdb2d40efb765b'),(153,45,'_wp_attached_file','2018/03/1470399607_Illustration.png'),(154,45,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:35:\"2018/03/1470399607_Illustration.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"1470399607_Illustration-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:35:\"1470399607_Illustration-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:33:\"1470399607_Illustration-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"1470399607_Illustration-512x510.png\";s:5:\"width\";i:512;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"1470399607_Illustration-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"1470399607_Illustration-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"1470399607_Illustration-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"1470399607_Illustration-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"1470399607_Illustration-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"1470399607_Illustration-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(155,45,'_elementor_source_image_hash','34d6c0100714957d161827d90d9ce2750e4d71a3'),(156,46,'_wp_attached_file','2018/03/1470399614_Social_Media.png'),(157,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:35:\"2018/03/1470399614_Social_Media.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"1470399614_Social_Media-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:35:\"1470399614_Social_Media-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:33:\"1470399614_Social_Media-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"1470399614_Social_Media-512x510.png\";s:5:\"width\";i:512;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"1470399614_Social_Media-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"1470399614_Social_Media-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"1470399614_Social_Media-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"1470399614_Social_Media-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"1470399614_Social_Media-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"1470399614_Social_Media-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(158,46,'_elementor_source_image_hash','d557d522067465e4bd6f2efc658c42a4bc00f203'),(159,47,'_wp_attached_file','2018/03/1470399594_Web_Design.png'),(160,47,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:33:\"2018/03/1470399594_Web_Design.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"1470399594_Web_Design-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:33:\"1470399594_Web_Design-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:31:\"1470399594_Web_Design-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"1470399594_Web_Design-512x510.png\";s:5:\"width\";i:512;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"1470399594_Web_Design-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"1470399594_Web_Design-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"1470399594_Web_Design-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"1470399594_Web_Design-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"1470399594_Web_Design-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"1470399594_Web_Design-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(161,47,'_elementor_source_image_hash','4ca740bd8294a67357d7e15e4647a343f7171bb1'),(162,48,'_wp_attached_file','2018/03/1470399662_Marketing.png'),(163,48,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:32:\"2018/03/1470399662_Marketing.png\";s:5:\"sizes\";a:3:{s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:30:\"1470399662_Marketing-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"1470399662_Marketing-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"1470399662_Marketing-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(164,48,'_elementor_source_image_hash','69268cbce5e2a9a6f99b17a99c81cc52183385ab'),(165,49,'_wp_attached_file','2018/03/1470399671_SEO.png'),(166,49,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:26:\"2018/03/1470399671_SEO.png\";s:5:\"sizes\";a:3:{s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:24:\"1470399671_SEO-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"1470399671_SEO-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"1470399671_SEO-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(167,49,'_elementor_source_image_hash','8d66ddba6dccce5d59e378106df3110e3b8bd017'),(168,50,'_wp_attached_file','2018/03/1470399715_E-Commerce.png'),(169,50,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:33:\"2018/03/1470399715_E-Commerce.png\";s:5:\"sizes\";a:3:{s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:31:\"1470399715_E-Commerce-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"1470399715_E-Commerce-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"1470399715_E-Commerce-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(170,50,'_elementor_source_image_hash','2d349c6c3c3c294f95c179120b1717ea053e293c'),(171,51,'_wp_attached_file','2018/03/1470399674_App_Development.png'),(172,51,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:38:\"2018/03/1470399674_App_Development.png\";s:5:\"sizes\";a:3:{s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:36:\"1470399674_App_Development-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"1470399674_App_Development-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:38:\"1470399674_App_Development-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(173,51,'_elementor_source_image_hash','a4a9946940f7996c9cd8a95be3325cb2e84da261'),(174,52,'_wp_attached_file','2018/03/1470399667_Newsletter.png'),(175,52,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:33:\"2018/03/1470399667_Newsletter.png\";s:5:\"sizes\";a:3:{s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:31:\"1470399667_Newsletter-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"1470399667_Newsletter-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"1470399667_Newsletter-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(176,52,'_elementor_source_image_hash','70a39cd3ca1154cfcd7cd3a82c0227bdfc9651b6'),(177,53,'_wp_attached_file','2018/03/1470399656_Branding.png'),(178,53,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:31:\"2018/03/1470399656_Branding.png\";s:5:\"sizes\";a:3:{s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:29:\"1470399656_Branding-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"1470399656_Branding-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"1470399656_Branding-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(179,53,'_elementor_source_image_hash','3b1a93451144b3c01b0e9e267ece57ecc45bdee0'),(497,141,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Testimonials\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"51b1b41\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"5ee78fe\"}],\"title_color\":\"#c184d0\",\"_z_index\":0},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(517,146,'_elementor_edit_mode','builder'),(518,146,'_elementor_version','0.4'),(499,142,'client_name','Rob & Katy'),(500,142,'email','rnegron07@icloud.com'),(501,142,'company_name','NMS, llc'),(502,142,'company_website','http://www.negronmultiservices.com'),(503,142,'submit_date','2018-03-18 04:30:21'),(504,143,'_wp_attached_file','2018/03/NegronLogo.png'),(505,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:216;s:6:\"height\";i:288;s:4:\"file\";s:22:\"2018/03/NegronLogo.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"NegronLogo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:20:\"NegronLogo-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"NegronLogo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"NegronLogo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"NegronLogo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"NegronLogo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(333,106,'_elementor_edit_mode','builder'),(334,106,'_elementor_version','0.4'),(335,106,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(336,106,'_elementor_data','[{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBonded.png\",\"id\":105},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"b03aafa\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"cd1f489\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false},{\"id\":\"e8292d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(322,103,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(323,103,'_elementor_data','[{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4025274e\",\"elType\":\"widget\",\"settings\":{\"section_testimonial\":\"\",\"testimonial_content\":\"\\\"What really turned me over was the ability to understand how everything works without any prior knowledge.\\\"\",\"testimonial_image\":{\"id\":44,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25497478040_140ce47f31_k.jpg\"},\"testimonial_name\":\"John Doe\",\"testimonial_job\":\"Designer\",\"testimonial_alignment\":\"\",\"section_style_testimonial_content\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"27\"},\"content_typography_font_weight\":\"300\",\"content_typography_font_style\":\"italic\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.9},\"section_style_testimonial_image\":\"\",\"image_size\":{\"unit\":\"px\",\"size\":62},\"image_border_border\":\"solid\",\"image_border_color\":\"rgba(255,255,255,0.57)\",\"section_style_testimonial_name\":\"\",\"name_text_color\":\"#cc2e72\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":19},\"name_typography_text_transform\":\"uppercase\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"section_style_testimonial_job\":\"\",\"job_text_color\":\"rgba(0,0,0,0.25)\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":\"13\"},\"job_typography_line_height\":{\"unit\":\"em\",\"size\":1.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\"},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.6},\"content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.7\"},\"name_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"name_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(302,99,'_elementor_data','[{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63ffe0a\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow_type\":\"outset\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"396aa73f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_size\":\"full\",\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4025274e\",\"elType\":\"widget\",\"settings\":{\"section_testimonial\":\"\",\"testimonial_content\":\"\\\"What really turned me over was the ability to understand how everything works without any prior knowledge.\\\"\",\"testimonial_image\":{\"id\":44,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25497478040_140ce47f31_k.jpg\"},\"testimonial_name\":\"John Doe\",\"testimonial_job\":\"Designer\",\"testimonial_alignment\":\"\",\"section_style_testimonial_content\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"27\"},\"content_typography_font_weight\":\"300\",\"content_typography_font_style\":\"italic\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.9},\"section_style_testimonial_image\":\"\",\"image_size\":{\"unit\":\"px\",\"size\":62},\"image_border_border\":\"solid\",\"image_border_color\":\"rgba(255,255,255,0.57)\",\"section_style_testimonial_name\":\"\",\"name_text_color\":\"#cc2e72\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":19},\"name_typography_text_transform\":\"uppercase\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"section_style_testimonial_job\":\"\",\"job_text_color\":\"rgba(0,0,0,0.25)\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":\"13\"},\"job_typography_line_height\":{\"unit\":\"em\",\"size\":1.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\"},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.6},\"content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.7\"},\"name_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"name_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(180,54,'_elementor_edit_mode','builder'),(181,54,'_elementor_version','0.4'),(182,54,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(183,54,'_elementor_data','[{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23e5032f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63ffe0a\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow_type\":\"outset\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"396aa73f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":31,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/zusman.png\"},{\"id\":32,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/zing.png\"},{\"id\":33,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/madrin.png\"},{\"id\":34,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/armond-1.png\"},{\"id\":35,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/x.venox_.png\"},{\"id\":36,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/geo.png\"},{\"id\":37,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/fifthflour.png\"},{\"id\":38,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/larozse.png\"},{\"id\":39,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/bolier.png\"},{\"id\":40,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/mapmaster.png\"},{\"id\":41,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/darkside.png\"},{\"id\":42,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/digit.png\"},{\"id\":43,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/col.png\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"6\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4025274e\",\"elType\":\"widget\",\"settings\":{\"section_testimonial\":\"\",\"testimonial_content\":\"\\\"What really turned me over was the ability to understand how everything works without any prior knowledge.\\\"\",\"testimonial_image\":{\"id\":44,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25497478040_140ce47f31_k.jpg\"},\"testimonial_name\":\"John Doe\",\"testimonial_job\":\"Designer\",\"testimonial_alignment\":\"\",\"section_style_testimonial_content\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"27\"},\"content_typography_font_weight\":\"300\",\"content_typography_font_style\":\"italic\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.9},\"section_style_testimonial_image\":\"\",\"image_size\":{\"unit\":\"px\",\"size\":62},\"image_border_border\":\"solid\",\"image_border_color\":\"rgba(255,255,255,0.57)\",\"section_style_testimonial_name\":\"\",\"name_text_color\":\"#cc2e72\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":19},\"name_typography_text_transform\":\"uppercase\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"section_style_testimonial_job\":\"\",\"job_text_color\":\"rgba(0,0,0,0.25)\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":\"13\"},\"job_typography_line_height\":{\"unit\":\"em\",\"size\":1.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\"},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.6},\"content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.7\"},\"name_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"name_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(299,99,'_elementor_edit_mode','builder'),(253,86,'_elementor_edit_mode','builder'),(185,55,'_wp_attached_file','2018/03/123notary.png'),(186,55,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1028;s:4:\"file\";s:21:\"2018/03/123notary.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"123notary-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:\"123notary-300x286.png\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"123notary-768x731.png\";s:5:\"width\";i:768;s:6:\"height\";i:731;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"123notary-1024x975.png\";s:5:\"width\";i:1024;s:6:\"height\";i:975;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:19:\"123notary-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"123notary-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"123notary-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"123notary-350x333.png\";s:5:\"width\";i:350;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"123notary-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"123notary-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"123notary-350x333.png\";s:5:\"width\";i:350;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"123notary-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(187,56,'_wp_attached_file','2018/03/American-Society-of-Notaries.jpg'),(188,56,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:40:\"2018/03/American-Society-of-Notaries.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"American-Society-of-Notaries-150x150.jpg\";s:5:\"width\";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:\"American-Society-of-Notaries-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:38:\"American-Society-of-Notaries-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"American-Society-of-Notaries-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:40:\"American-Society-of-Notaries-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"American-Society-of-Notaries-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:40:\"American-Society-of-Notaries-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:40:\"American-Society-of-Notaries-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"American-Society-of-Notaries-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(189,57,'_wp_attached_file','2018/03/American-Society-of-Notaries.png'),(190,57,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:40:\"2018/03/American-Society-of-Notaries.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"American-Society-of-Notaries-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:40:\"American-Society-of-Notaries-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:38:\"American-Society-of-Notaries-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"American-Society-of-Notaries-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:40:\"American-Society-of-Notaries-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"American-Society-of-Notaries-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:40:\"American-Society-of-Notaries-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:40:\"American-Society-of-Notaries-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"American-Society-of-Notaries-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(191,58,'_wp_attached_file','2018/03/b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080.png'),(192,58,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1340;s:6:\"height\";i:245;s:4:\"file\";s:62:\"2018/03/b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:62:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-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:61:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-300x55.png\";s:5:\"width\";i:300;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:62:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-768x140.png\";s:5:\"width\";i:768;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:63:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-1024x187.png\";s:5:\"width\";i:1024;s:6:\"height\";i:187;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:60:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:62:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-825x245.png\";s:5:\"width\";i:825;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:62:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:61:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-350x64.png\";s:5:\"width\";i:350;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:62:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:62:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:61:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-350x64.png\";s:5:\"width\";i:350;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:62:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(193,59,'_wp_attached_file','2018/03/bobsled-1866318_1280.png'),(194,59,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:4:\"file\";s:32:\"2018/03/bobsled-1866318_1280.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"bobsled-1866318_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:32:\"bobsled-1866318_1280-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"bobsled-1866318_1280-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"bobsled-1866318_1280-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:30:\"bobsled-1866318_1280-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"bobsled-1866318_1280-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"bobsled-1866318_1280-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"bobsled-1866318_1280-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"bobsled-1866318_1280-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"bobsled-1866318_1280-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"bobsled-1866318_1280-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"bobsled-1866318_1280-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(195,60,'_wp_attached_file','2018/03/Certified.png'),(196,60,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:840;s:6:\"height\";i:838;s:4:\"file\";s:21:\"2018/03/Certified.png\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Certified-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:\"Certified-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"Certified-768x766.png\";s:5:\"width\";i:768;s:6:\"height\";i:766;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:19:\"Certified-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"Certified-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"Certified-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"Certified-350x349.png\";s:5:\"width\";i:350;s:6:\"height\";i:349;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"Certified-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"Certified-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"Certified-350x349.png\";s:5:\"width\";i:350;s:6:\"height\";i:349;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"Certified-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(197,61,'_wp_attached_file','2018/03/closingExchange.jpg'),(198,61,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1499;s:6:\"height\";i:1500;s:4:\"file\";s:27:\"2018/03/closingExchange.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"closingExchange-150x150.jpg\";s:5:\"width\";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:\"closingExchange-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:27:\"closingExchange-768x769.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:769;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"closingExchange-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:25:\"closingExchange-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:27:\"closingExchange-825x510.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"closingExchange-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"closingExchange-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"closingExchange-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"closingExchange-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"closingExchange-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"closingExchange-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:20:\"The Closing Exchange\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:70:\"Transforming the signing experience. (PRNewsfoto/The Closing Exchange)\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:125:\"This image must be used within the context of the news release it accompanied. Request permission from issuer for other uses.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:25:\"The Closing Exchange Logo\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(199,62,'_wp_attached_file','2018/03/cusponsorlogo.png'),(200,62,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1126;s:6:\"height\";i:1125;s:4:\"file\";s:25:\"2018/03/cusponsorlogo.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"cusponsorlogo-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:25:\"cusponsorlogo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"cusponsorlogo-768x767.png\";s:5:\"width\";i:768;s:6:\"height\";i:767;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"cusponsorlogo-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:23:\"cusponsorlogo-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"cusponsorlogo-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"cusponsorlogo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"cusponsorlogo-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"cusponsorlogo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"cusponsorlogo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"cusponsorlogo-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"cusponsorlogo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(201,63,'_wp_attached_file','2018/03/Fidelity-Logo-for-Home-Pages.jpg'),(202,63,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1023;s:6:\"height\";i:217;s:4:\"file\";s:40:\"2018/03/Fidelity-Logo-for-Home-Pages.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Fidelity-Logo-for-Home-Pages-150x150.jpg\";s:5:\"width\";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:\"Fidelity-Logo-for-Home-Pages-300x64.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Fidelity-Logo-for-Home-Pages-768x163.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:163;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:38:\"Fidelity-Logo-for-Home-Pages-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:40:\"Fidelity-Logo-for-Home-Pages-825x217.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:217;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"Fidelity-Logo-for-Home-Pages-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:39:\"Fidelity-Logo-for-Home-Pages-350x74.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:74;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"Fidelity-Logo-for-Home-Pages-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:40:\"Fidelity-Logo-for-Home-Pages-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:39:\"Fidelity-Logo-for-Home-Pages-350x74.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:74;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"Fidelity-Logo-for-Home-Pages-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(203,64,'_wp_attached_file','2018/03/fidelitySeal.png'),(204,64,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:24:\"2018/03/fidelitySeal.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"fidelitySeal-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:22:\"fidelitySeal-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"fidelitySeal-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"fidelitySeal-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"fidelitySeal-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"fidelitySeal-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(205,65,'_wp_attached_file','2018/03/game-1300503_1280.png'),(206,65,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:640;s:4:\"file\";s:29:\"2018/03/game-1300503_1280.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"game-1300503_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:29:\"game-1300503_1280-300x150.png\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"game-1300503_1280-768x384.png\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"game-1300503_1280-1024x512.png\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:27:\"game-1300503_1280-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"game-1300503_1280-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"game-1300503_1280-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"game-1300503_1280-350x175.png\";s:5:\"width\";i:350;s:6:\"height\";i:175;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"game-1300503_1280-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"game-1300503_1280-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"game-1300503_1280-350x175.png\";s:5:\"width\";i:350;s:6:\"height\";i:175;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"game-1300503_1280-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(207,66,'_wp_attached_file','2018/03/Moto-Noto-Icon.png'),(208,66,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:26:\"2018/03/Moto-Noto-Icon.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Moto-Noto-Icon-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:\"Moto-Noto-Icon-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Moto-Noto-Icon-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Moto-Noto-Icon-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:24:\"Moto-Noto-Icon-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Moto-Noto-Icon-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Moto-Noto-Icon-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"Moto-Noto-Icon-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Moto-Noto-Icon-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"Moto-Noto-Icon-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"Moto-Noto-Icon-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Moto-Noto-Icon-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(209,67,'_wp_attached_file','2018/03/moto-notoLOGO.jpg'),(210,67,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3936;s:6:\"height\";i:1288;s:4:\"file\";s:25:\"2018/03/moto-notoLOGO.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"moto-notoLOGO-150x150.jpg\";s:5:\"width\";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:\"moto-notoLOGO-300x98.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"moto-notoLOGO-768x251.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:251;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"moto-notoLOGO-1024x335.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:335;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:23:\"moto-notoLOGO-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"moto-notoLOGO-825x510.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"moto-notoLOGO-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"moto-notoLOGO-350x115.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"moto-notoLOGO-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"moto-notoLOGO-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"moto-notoLOGO-350x115.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:115;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"moto-notoLOGO-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(211,68,'_wp_attached_file','2018/03/moto-notoLOGO.png'),(212,68,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3936;s:6:\"height\";i:1288;s:4:\"file\";s:25:\"2018/03/moto-notoLOGO.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"moto-notoLOGO-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:24:\"moto-notoLOGO-300x98.png\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"moto-notoLOGO-768x251.png\";s:5:\"width\";i:768;s:6:\"height\";i:251;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"moto-notoLOGO-1024x335.png\";s:5:\"width\";i:1024;s:6:\"height\";i:335;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:23:\"moto-notoLOGO-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"moto-notoLOGO-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"moto-notoLOGO-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"moto-notoLOGO-350x115.png\";s:5:\"width\";i:350;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"moto-notoLOGO-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"moto-notoLOGO-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"moto-notoLOGO-350x115.png\";s:5:\"width\";i:350;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"moto-notoLOGO-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(213,69,'_wp_attached_file','2018/03/moto-notoLOGO2.png'),(214,69,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3936;s:6:\"height\";i:1288;s:4:\"file\";s:26:\"2018/03/moto-notoLOGO2.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"moto-notoLOGO2-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:25:\"moto-notoLOGO2-300x98.png\";s:5:\"width\";i:300;s:6:\"height\";i:98;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"moto-notoLOGO2-768x251.png\";s:5:\"width\";i:768;s:6:\"height\";i:251;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"moto-notoLOGO2-1024x335.png\";s:5:\"width\";i:1024;s:6:\"height\";i:335;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:24:\"moto-notoLOGO2-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"moto-notoLOGO2-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"moto-notoLOGO2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"moto-notoLOGO2-350x115.png\";s:5:\"width\";i:350;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"moto-notoLOGO2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"moto-notoLOGO2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"moto-notoLOGO2-350x115.png\";s:5:\"width\";i:350;s:6:\"height\";i:115;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"moto-notoLOGO2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(215,70,'_wp_attached_file','2018/03/motorbike-2029941_1280.png'),(216,70,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1066;s:4:\"file\";s:34:\"2018/03/motorbike-2029941_1280.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"motorbike-2029941_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:34:\"motorbike-2029941_1280-300x250.png\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"motorbike-2029941_1280-768x640.png\";s:5:\"width\";i:768;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"motorbike-2029941_1280-1024x853.png\";s:5:\"width\";i:1024;s:6:\"height\";i:853;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:32:\"motorbike-2029941_1280-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"motorbike-2029941_1280-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"motorbike-2029941_1280-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:34:\"motorbike-2029941_1280-350x291.png\";s:5:\"width\";i:350;s:6:\"height\";i:291;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"motorbike-2029941_1280-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"motorbike-2029941_1280-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"motorbike-2029941_1280-350x291.png\";s:5:\"width\";i:350;s:6:\"height\";i:291;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"motorbike-2029941_1280-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(217,71,'_wp_attached_file','2018/03/national_notary_association.pdf'),(218,72,'_wp_attached_file','2018/03/nna_logo2.png'),(219,72,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:694;s:6:\"height\";i:698;s:4:\"file\";s:21:\"2018/03/nna_logo2.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"nna_logo2-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:\"nna_logo2-298x300.png\";s:5:\"width\";i:298;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:19:\"nna_logo2-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"nna_logo2-694x510.png\";s:5:\"width\";i:694;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"nna_logo2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"nna_logo2-350x352.png\";s:5:\"width\";i:350;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"nna_logo2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"nna_logo2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"nna_logo2-350x352.png\";s:5:\"width\";i:350;s:6:\"height\";i:352;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"nna_logo2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(220,73,'_wp_attached_file','2018/03/nna_member_badge_download_png.png'),(221,73,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:600;s:4:\"file\";s:41:\"2018/03/nna_member_badge_download_png.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"nna_member_badge_download_png-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:41:\"nna_member_badge_download_png-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:39:\"nna_member_badge_download_png-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"nna_member_badge_download_png-598x510.png\";s:5:\"width\";i:598;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:41:\"nna_member_badge_download_png-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:41:\"nna_member_badge_download_png-350x351.png\";s:5:\"width\";i:350;s:6:\"height\";i:351;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:41:\"nna_member_badge_download_png-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:41:\"nna_member_badge_download_png-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:41:\"nna_member_badge_download_png-350x351.png\";s:5:\"width\";i:350;s:6:\"height\";i:351;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:41:\"nna_member_badge_download_png-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(222,74,'_wp_attached_file','2018/03/nna_member_badge.png'),(223,74,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:598;s:6:\"height\";i:525;s:4:\"file\";s:28:\"2018/03/nna_member_badge.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"nna_member_badge-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:28:\"nna_member_badge-300x263.png\";s:5:\"width\";i:300;s:6:\"height\";i:263;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:26:\"nna_member_badge-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"nna_member_badge-598x510.png\";s:5:\"width\";i:598;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"nna_member_badge-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"nna_member_badge-350x307.png\";s:5:\"width\";i:350;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"nna_member_badge-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"nna_member_badge-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"nna_member_badge-350x307.png\";s:5:\"width\";i:350;s:6:\"height\";i:307;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"nna_member_badge-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(224,75,'_wp_attached_file','2018/03/notary_bonded_lg.jpg'),(225,75,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:432;s:6:\"height\";i:432;s:4:\"file\";s:28:\"2018/03/notary_bonded_lg.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"notary_bonded_lg-150x150.jpg\";s:5:\"width\";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:\"notary_bonded_lg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:26:\"notary_bonded_lg-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"notary_bonded_lg-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"notary_bonded_lg-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"notary_bonded_lg-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"notary_bonded_lg-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"notary_bonded_lg-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"notary_bonded_lg-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(226,76,'_wp_attached_file','2018/03/notaryBonded.jpg'),(227,76,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:432;s:6:\"height\";i:432;s:4:\"file\";s:24:\"2018/03/notaryBonded.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"notaryBonded-150x150.jpg\";s:5:\"width\";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:\"notaryBonded-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:22:\"notaryBonded-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"notaryBonded-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"notaryBonded-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"notaryBonded-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"notaryBonded-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"notaryBonded-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"notaryBonded-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(228,77,'_wp_attached_file','2018/03/paralegal-button.png'),(229,77,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:262;s:4:\"file\";s:28:\"2018/03/paralegal-button.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"paralegal-button-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:28:\"paralegal-button-300x131.png\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:26:\"paralegal-button-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"paralegal-button-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"paralegal-button-350x153.png\";s:5:\"width\";i:350;s:6:\"height\";i:153;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"paralegal-button-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"paralegal-button-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"paralegal-button-350x153.png\";s:5:\"width\";i:350;s:6:\"height\";i:153;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"paralegal-button-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(230,78,'_wp_attached_file','2018/03/scales-2579312_960_720.jpg'),(231,78,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:34:\"2018/03/scales-2579312_960_720.jpg\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"scales-2579312_960_720-150x150.jpg\";s:5:\"width\";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:\"scales-2579312_960_720-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:32:\"scales-2579312_960_720-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"scales-2579312_960_720-720x510.jpg\";s:5:\"width\";i:720;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"scales-2579312_960_720-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:34:\"scales-2579312_960_720-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"scales-2579312_960_720-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"scales-2579312_960_720-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"scales-2579312_960_720-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"scales-2579312_960_720-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(232,79,'_wp_attached_file','2018/03/scales-of-justice.png'),(233,79,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:255;s:6:\"height\";i:255;s:4:\"file\";s:29:\"2018/03/scales-of-justice.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"scales-of-justice-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:27:\"scales-of-justice-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"scales-of-justice-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"scales-of-justice-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"scales-of-justice-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"scales-of-justice-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(234,80,'_wp_attached_file','2018/03/University_of_Colorado_at_Boulder_-_Wordmark.png'),(235,80,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1172;s:6:\"height\";i:387;s:4:\"file\";s:56:\"2018/03/University_of_Colorado_at_Boulder_-_Wordmark.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:56:\"University_of_Colorado_at_Boulder_-_Wordmark-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:55:\"University_of_Colorado_at_Boulder_-_Wordmark-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:56:\"University_of_Colorado_at_Boulder_-_Wordmark-768x254.png\";s:5:\"width\";i:768;s:6:\"height\";i:254;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:57:\"University_of_Colorado_at_Boulder_-_Wordmark-1024x338.png\";s:5:\"width\";i:1024;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:54:\"University_of_Colorado_at_Boulder_-_Wordmark-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:56:\"University_of_Colorado_at_Boulder_-_Wordmark-825x387.png\";s:5:\"width\";i:825;s:6:\"height\";i:387;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:56:\"University_of_Colorado_at_Boulder_-_Wordmark-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:56:\"University_of_Colorado_at_Boulder_-_Wordmark-350x116.png\";s:5:\"width\";i:350;s:6:\"height\";i:116;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:56:\"University_of_Colorado_at_Boulder_-_Wordmark-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:56:\"University_of_Colorado_at_Boulder_-_Wordmark-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:56:\"University_of_Colorado_at_Boulder_-_Wordmark-350x116.png\";s:5:\"width\";i:350;s:6:\"height\";i:116;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:56:\"University_of_Colorado_at_Boulder_-_Wordmark-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(236,81,'_wp_attached_file','2018/03/University-of-Colorado-Boulder-Seal1.jpg'),(237,81,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:956;s:6:\"height\";i:955;s:4:\"file\";s:48:\"2018/03/University-of-Colorado-Boulder-Seal1.jpg\";s:5:\"sizes\";a:11:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"University-of-Colorado-Boulder-Seal1-150x150.jpg\";s:5:\"width\";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:\"University-of-Colorado-Boulder-Seal1-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:48:\"University-of-Colorado-Boulder-Seal1-768x767.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:767;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:46:\"University-of-Colorado-Boulder-Seal1-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:48:\"University-of-Colorado-Boulder-Seal1-825x510.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"University-of-Colorado-Boulder-Seal1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"University-of-Colorado-Boulder-Seal1-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"University-of-Colorado-Boulder-Seal1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"University-of-Colorado-Boulder-Seal1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"University-of-Colorado-Boulder-Seal1-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"University-of-Colorado-Boulder-Seal1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(238,82,'_wp_attached_file','2018/03/UniversityOfColoradoSeal.png'),(239,82,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:746;s:6:\"height\";i:768;s:4:\"file\";s:36:\"2018/03/UniversityOfColoradoSeal.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"UniversityOfColoradoSeal-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:36:\"UniversityOfColoradoSeal-291x300.png\";s:5:\"width\";i:291;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:34:\"UniversityOfColoradoSeal-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:36:\"UniversityOfColoradoSeal-746x510.png\";s:5:\"width\";i:746;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"UniversityOfColoradoSeal-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:36:\"UniversityOfColoradoSeal-350x360.png\";s:5:\"width\";i:350;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"UniversityOfColoradoSeal-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:36:\"UniversityOfColoradoSeal-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:36:\"UniversityOfColoradoSeal-350x360.png\";s:5:\"width\";i:350;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"UniversityOfColoradoSeal-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(240,83,'_wp_attached_file','2018/03/VIPlogo.png'),(241,83,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:482;s:6:\"height\";i:480;s:4:\"file\";s:19:\"2018/03/VIPlogo.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"VIPlogo-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:19:\"VIPlogo-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:17:\"VIPlogo-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"VIPlogo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"VIPlogo-350x349.png\";s:5:\"width\";i:350;s:6:\"height\";i:349;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"VIPlogo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"VIPlogo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"VIPlogo-350x349.png\";s:5:\"width\";i:350;s:6:\"height\";i:349;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"VIPlogo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(301,99,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(242,84,'_elementor_edit_mode','builder'),(243,84,'_elementor_version','0.4'),(244,84,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(245,84,'_elementor_data','[{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"title_color\":\"#c184d0\",\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(111,22,131,0.66)\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63ffe0a\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow_type\":\"outset\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"396aa73f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":31,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/zusman.png\"},{\"id\":32,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/zing.png\"},{\"id\":33,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/madrin.png\"},{\"id\":34,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/armond-1.png\"},{\"id\":35,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/x.venox_.png\"},{\"id\":36,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/geo.png\"},{\"id\":37,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/fifthflour.png\"},{\"id\":38,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/larozse.png\"},{\"id\":39,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/bolier.png\"},{\"id\":40,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/mapmaster.png\"},{\"id\":41,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/darkside.png\"},{\"id\":42,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/digit.png\"},{\"id\":43,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/col.png\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"6\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4025274e\",\"elType\":\"widget\",\"settings\":{\"section_testimonial\":\"\",\"testimonial_content\":\"\\\"What really turned me over was the ability to understand how everything works without any prior knowledge.\\\"\",\"testimonial_image\":{\"id\":44,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25497478040_140ce47f31_k.jpg\"},\"testimonial_name\":\"John Doe\",\"testimonial_job\":\"Designer\",\"testimonial_alignment\":\"\",\"section_style_testimonial_content\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"27\"},\"content_typography_font_weight\":\"300\",\"content_typography_font_style\":\"italic\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.9},\"section_style_testimonial_image\":\"\",\"image_size\":{\"unit\":\"px\",\"size\":62},\"image_border_border\":\"solid\",\"image_border_color\":\"rgba(255,255,255,0.57)\",\"section_style_testimonial_name\":\"\",\"name_text_color\":\"#cc2e72\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":19},\"name_typography_text_transform\":\"uppercase\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"section_style_testimonial_job\":\"\",\"job_text_color\":\"rgba(0,0,0,0.25)\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":\"13\"},\"job_typography_line_height\":{\"unit\":\"em\",\"size\":1.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\"},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.6},\"content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.7\"},\"name_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"name_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(246,84,'_elementor_css','a:3:{s:4:\"time\";i:1521224138;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(300,99,'_elementor_version','0.4'),(248,85,'_elementor_edit_mode','builder'),(249,85,'_elementor_version','0.4'),(250,85,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(251,85,'_elementor_data','[{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(111,22,131,0.66)\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63ffe0a\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow_type\":\"outset\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"396aa73f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":31,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/zusman.png\"},{\"id\":32,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/zing.png\"},{\"id\":33,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/madrin.png\"},{\"id\":34,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/armond-1.png\"},{\"id\":35,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/x.venox_.png\"},{\"id\":36,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/geo.png\"},{\"id\":37,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/fifthflour.png\"},{\"id\":38,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/larozse.png\"},{\"id\":39,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/bolier.png\"},{\"id\":40,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/mapmaster.png\"},{\"id\":41,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/darkside.png\"},{\"id\":42,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/digit.png\"},{\"id\":43,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/col.png\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"6\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4025274e\",\"elType\":\"widget\",\"settings\":{\"section_testimonial\":\"\",\"testimonial_content\":\"\\\"What really turned me over was the ability to understand how everything works without any prior knowledge.\\\"\",\"testimonial_image\":{\"id\":44,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25497478040_140ce47f31_k.jpg\"},\"testimonial_name\":\"John Doe\",\"testimonial_job\":\"Designer\",\"testimonial_alignment\":\"\",\"section_style_testimonial_content\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"27\"},\"content_typography_font_weight\":\"300\",\"content_typography_font_style\":\"italic\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.9},\"section_style_testimonial_image\":\"\",\"image_size\":{\"unit\":\"px\",\"size\":62},\"image_border_border\":\"solid\",\"image_border_color\":\"rgba(255,255,255,0.57)\",\"section_style_testimonial_name\":\"\",\"name_text_color\":\"#cc2e72\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":19},\"name_typography_text_transform\":\"uppercase\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"section_style_testimonial_job\":\"\",\"job_text_color\":\"rgba(0,0,0,0.25)\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":\"13\"},\"job_typography_line_height\":{\"unit\":\"em\",\"size\":1.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\"},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.6},\"content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.7\"},\"name_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"name_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(252,85,'_elementor_css','a:3:{s:4:\"time\";i:1521224647;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(254,86,'_elementor_version','0.4'),(255,86,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(256,86,'_elementor_data','[{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(0,0,0,0.66)\",\"width\":{\"unit\":\"%\",\"size\":61},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63ffe0a\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow_type\":\"outset\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"396aa73f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":31,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/zusman.png\"},{\"id\":32,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/zing.png\"},{\"id\":33,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/madrin.png\"},{\"id\":34,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/armond-1.png\"},{\"id\":35,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/x.venox_.png\"},{\"id\":36,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/geo.png\"},{\"id\":37,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/fifthflour.png\"},{\"id\":38,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/larozse.png\"},{\"id\":39,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/bolier.png\"},{\"id\":40,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/mapmaster.png\"},{\"id\":41,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/darkside.png\"},{\"id\":42,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/digit.png\"},{\"id\":43,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/col.png\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"6\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4025274e\",\"elType\":\"widget\",\"settings\":{\"section_testimonial\":\"\",\"testimonial_content\":\"\\\"What really turned me over was the ability to understand how everything works without any prior knowledge.\\\"\",\"testimonial_image\":{\"id\":44,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25497478040_140ce47f31_k.jpg\"},\"testimonial_name\":\"John Doe\",\"testimonial_job\":\"Designer\",\"testimonial_alignment\":\"\",\"section_style_testimonial_content\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"27\"},\"content_typography_font_weight\":\"300\",\"content_typography_font_style\":\"italic\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.9},\"section_style_testimonial_image\":\"\",\"image_size\":{\"unit\":\"px\",\"size\":62},\"image_border_border\":\"solid\",\"image_border_color\":\"rgba(255,255,255,0.57)\",\"section_style_testimonial_name\":\"\",\"name_text_color\":\"#cc2e72\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":19},\"name_typography_text_transform\":\"uppercase\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"section_style_testimonial_job\":\"\",\"job_text_color\":\"rgba(0,0,0,0.25)\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":\"13\"},\"job_typography_line_height\":{\"unit\":\"em\",\"size\":1.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\"},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.6},\"content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.7\"},\"name_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"name_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(258,87,'_elementor_edit_mode','builder'),(259,87,'_elementor_version','0.4'),(260,87,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(261,87,'_elementor_data','[{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63ffe0a\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow_type\":\"outset\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"396aa73f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":31,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/zusman.png\"},{\"id\":32,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/zing.png\"},{\"id\":33,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/madrin.png\"},{\"id\":34,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/armond-1.png\"},{\"id\":35,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/x.venox_.png\"},{\"id\":36,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/geo.png\"},{\"id\":37,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/fifthflour.png\"},{\"id\":38,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/larozse.png\"},{\"id\":39,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/bolier.png\"},{\"id\":40,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/mapmaster.png\"},{\"id\":41,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/darkside.png\"},{\"id\":42,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/digit.png\"},{\"id\":43,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/col.png\"}],\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"6\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4025274e\",\"elType\":\"widget\",\"settings\":{\"section_testimonial\":\"\",\"testimonial_content\":\"\\\"What really turned me over was the ability to understand how everything works without any prior knowledge.\\\"\",\"testimonial_image\":{\"id\":44,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25497478040_140ce47f31_k.jpg\"},\"testimonial_name\":\"John Doe\",\"testimonial_job\":\"Designer\",\"testimonial_alignment\":\"\",\"section_style_testimonial_content\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"27\"},\"content_typography_font_weight\":\"300\",\"content_typography_font_style\":\"italic\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.9},\"section_style_testimonial_image\":\"\",\"image_size\":{\"unit\":\"px\",\"size\":62},\"image_border_border\":\"solid\",\"image_border_color\":\"rgba(255,255,255,0.57)\",\"section_style_testimonial_name\":\"\",\"name_text_color\":\"#cc2e72\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":19},\"name_typography_text_transform\":\"uppercase\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"section_style_testimonial_job\":\"\",\"job_text_color\":\"rgba(0,0,0,0.25)\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":\"13\"},\"job_typography_line_height\":{\"unit\":\"em\",\"size\":1.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\"},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.6},\"content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.7\"},\"name_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"name_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(262,87,'_elementor_css','a:3:{s:4:\"time\";i:1521224755;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(264,88,'_wp_attached_file','2018/03/123notary-1.png'),(265,88,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:1028;s:4:\"file\";s:23:\"2018/03/123notary-1.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"123notary-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:\"123notary-1-300x286.png\";s:5:\"width\";i:300;s:6:\"height\";i:286;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"123notary-1-768x731.png\";s:5:\"width\";i:768;s:6:\"height\";i:731;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"123notary-1-1024x975.png\";s:5:\"width\";i:1024;s:6:\"height\";i:975;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:21:\"123notary-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"123notary-1-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"123notary-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"123notary-1-350x333.png\";s:5:\"width\";i:350;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"123notary-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"123notary-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"123notary-1-350x333.png\";s:5:\"width\";i:350;s:6:\"height\";i:333;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"123notary-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(266,89,'_wp_attached_file','2018/03/b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-1.png'),(267,89,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1340;s:6:\"height\";i:245;s:4:\"file\";s:64:\"2018/03/b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-1.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:64:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-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:63:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-1-300x55.png\";s:5:\"width\";i:300;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:64:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-1-768x140.png\";s:5:\"width\";i:768;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:65:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-1-1024x187.png\";s:5:\"width\";i:1024;s:6:\"height\";i:187;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:62:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:64:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-1-825x245.png\";s:5:\"width\";i:825;s:6:\"height\";i:245;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:64:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:63:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-1-350x64.png\";s:5:\"width\";i:350;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:64:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:64:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:63:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-1-350x64.png\";s:5:\"width\";i:350;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:64:\"b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(268,90,'_wp_attached_file','2018/03/closingExchange-1.jpg'),(269,90,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1499;s:6:\"height\";i:1500;s:4:\"file\";s:29:\"2018/03/closingExchange-1.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"closingExchange-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:29:\"closingExchange-1-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:29:\"closingExchange-1-768x769.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:769;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"closingExchange-1-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:27:\"closingExchange-1-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:29:\"closingExchange-1-825x510.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"closingExchange-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"closingExchange-1-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"closingExchange-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"closingExchange-1-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"closingExchange-1-350x350.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"closingExchange-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:20:\"The Closing Exchange\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:70:\"Transforming the signing experience. (PRNewsfoto/The Closing Exchange)\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:125:\"This image must be used within the context of the news release it accompanied. Request permission from issuer for other uses.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:25:\"The Closing Exchange Logo\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(279,93,'_wp_attached_file','2018/03/closingExchangeAlhpa.png'),(280,93,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1499;s:6:\"height\";i:1500;s:4:\"file\";s:32:\"2018/03/closingExchangeAlhpa.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"closingExchangeAlhpa-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:\"closingExchangeAlhpa-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"closingExchangeAlhpa-768x769.png\";s:5:\"width\";i:768;s:6:\"height\";i:769;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"closingExchangeAlhpa-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:30:\"closingExchangeAlhpa-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"closingExchangeAlhpa-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"closingExchangeAlhpa-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"closingExchangeAlhpa-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"closingExchangeAlhpa-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"closingExchangeAlhpa-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"closingExchangeAlhpa-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"closingExchangeAlhpa-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(307,100,'_elementor_data','[{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63ffe0a\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow_type\":\"outset\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"396aa73f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4025274e\",\"elType\":\"widget\",\"settings\":{\"section_testimonial\":\"\",\"testimonial_content\":\"\\\"What really turned me over was the ability to understand how everything works without any prior knowledge.\\\"\",\"testimonial_image\":{\"id\":44,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25497478040_140ce47f31_k.jpg\"},\"testimonial_name\":\"John Doe\",\"testimonial_job\":\"Designer\",\"testimonial_alignment\":\"\",\"section_style_testimonial_content\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"27\"},\"content_typography_font_weight\":\"300\",\"content_typography_font_style\":\"italic\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.9},\"section_style_testimonial_image\":\"\",\"image_size\":{\"unit\":\"px\",\"size\":62},\"image_border_border\":\"solid\",\"image_border_color\":\"rgba(255,255,255,0.57)\",\"section_style_testimonial_name\":\"\",\"name_text_color\":\"#cc2e72\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":19},\"name_typography_text_transform\":\"uppercase\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"section_style_testimonial_job\":\"\",\"job_text_color\":\"rgba(0,0,0,0.25)\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":\"13\"},\"job_typography_line_height\":{\"unit\":\"em\",\"size\":1.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\"},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.6},\"content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.7\"},\"name_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"name_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(306,100,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(320,103,'_elementor_edit_mode','builder'),(315,102,'_elementor_edit_mode','builder'),(321,103,'_elementor_version','0.4'),(304,100,'_elementor_edit_mode','builder'),(305,100,'_elementor_version','0.4'),(281,94,'_wp_attached_file','2018/03/snapdocsLogo.png'),(282,94,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:245;s:6:\"height\";i:245;s:4:\"file\";s:24:\"2018/03/snapdocsLogo.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"snapdocsLogo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:22:\"snapdocsLogo-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"snapdocsLogo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"snapdocsLogo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"snapdocsLogo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"snapdocsLogo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(308,100,'_elementor_css','a:3:{s:4:\"time\";i:1521226861;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(310,101,'_elementor_edit_mode','builder'),(311,101,'_elementor_version','0.4'),(312,101,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(313,101,'_elementor_data','[{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63ffe0a\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow_type\":\"outset\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"396aa73f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4025274e\",\"elType\":\"widget\",\"settings\":{\"section_testimonial\":\"\",\"testimonial_content\":\"\\\"What really turned me over was the ability to understand how everything works without any prior knowledge.\\\"\",\"testimonial_image\":{\"id\":44,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25497478040_140ce47f31_k.jpg\"},\"testimonial_name\":\"John Doe\",\"testimonial_job\":\"Designer\",\"testimonial_alignment\":\"\",\"section_style_testimonial_content\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"27\"},\"content_typography_font_weight\":\"300\",\"content_typography_font_style\":\"italic\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.9},\"section_style_testimonial_image\":\"\",\"image_size\":{\"unit\":\"px\",\"size\":62},\"image_border_border\":\"solid\",\"image_border_color\":\"rgba(255,255,255,0.57)\",\"section_style_testimonial_name\":\"\",\"name_text_color\":\"#cc2e72\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":19},\"name_typography_text_transform\":\"uppercase\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"section_style_testimonial_job\":\"\",\"job_text_color\":\"rgba(0,0,0,0.25)\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":\"13\"},\"job_typography_line_height\":{\"unit\":\"em\",\"size\":1.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\"},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.6},\"content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.7\"},\"name_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"name_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(314,101,'_elementor_css','a:3:{s:4:\"time\";i:1521227106;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(316,102,'_elementor_version','0.4'),(317,102,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(318,102,'_elementor_data','[{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63ffe0a\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_background\":\"classic\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow_type\":\"outset\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"396aa73f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4025274e\",\"elType\":\"widget\",\"settings\":{\"section_testimonial\":\"\",\"testimonial_content\":\"\\\"What really turned me over was the ability to understand how everything works without any prior knowledge.\\\"\",\"testimonial_image\":{\"id\":44,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25497478040_140ce47f31_k.jpg\"},\"testimonial_name\":\"John Doe\",\"testimonial_job\":\"Designer\",\"testimonial_alignment\":\"\",\"section_style_testimonial_content\":\"\",\"content_typography_typography\":\"custom\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":\"27\"},\"content_typography_font_weight\":\"300\",\"content_typography_font_style\":\"italic\",\"content_typography_line_height\":{\"unit\":\"em\",\"size\":1.9},\"section_style_testimonial_image\":\"\",\"image_size\":{\"unit\":\"px\",\"size\":62},\"image_border_border\":\"solid\",\"image_border_color\":\"rgba(255,255,255,0.57)\",\"section_style_testimonial_name\":\"\",\"name_text_color\":\"#cc2e72\",\"name_typography_typography\":\"custom\",\"name_typography_font_size\":{\"unit\":\"px\",\"size\":19},\"name_typography_text_transform\":\"uppercase\",\"name_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"section_style_testimonial_job\":\"\",\"job_text_color\":\"rgba(0,0,0,0.25)\",\"job_typography_typography\":\"custom\",\"job_typography_font_size\":{\"unit\":\"px\",\"size\":\"13\"},\"job_typography_line_height\":{\"unit\":\"em\",\"size\":1.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"content_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"22\"},\"content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"20\"},\"content_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.6},\"content_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.7\"},\"name_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"name_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"job_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(331,105,'_wp_attached_file','2018/03/notaryBonded-e1521229981375.png'),(324,103,'_elementor_css','a:3:{s:4:\"time\";i:1521227261;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(332,105,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:39:\"2018/03/notaryBonded-e1521229981375.png\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"notaryBonded-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:24:\"notaryBonded-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:22:\"notaryBonded-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"notaryBonded-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"notaryBonded-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"notaryBonded-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"notaryBonded-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"notaryBonded-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"notaryBonded-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(445,131,'_elementor_edit_mode','builder'),(446,131,'_elementor_version','0.4'),(447,131,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(448,131,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(337,107,'_elementor_edit_mode','builder'),(338,107,'_elementor_version','0.4'),(339,107,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(340,107,'_elementor_data','[{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBonded.png\",\"id\":105},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBonded.png\",\"id\":105},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBonded.png\",\"id\":105},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBonded.png\",\"id\":105},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(341,108,'_elementor_edit_mode','builder'),(342,108,'_elementor_version','0.4'),(343,108,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(344,108,'_elementor_data','[{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBonded.png\",\"id\":105},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogo.png\",\"id\":83},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Certified.png\",\"id\":60},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(360,111,'_wp_attached_file','2018/03/notaryBondedSmall.png'),(346,109,'_elementor_edit_mode','builder'),(347,109,'_elementor_version','0.4'),(348,109,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(349,109,'_elementor_data','[{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBonded.png\",\"id\":105},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogo.png\",\"id\":83},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Certified.png\",\"id\":60},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(350,109,'_elementor_css','a:3:{s:4:\"time\";i:1521229373;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(352,105,'_edit_lock','1521229926:1'),(353,105,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:432;s:6:\"height\";i:432;s:4:\"file\";s:16:\"notaryBonded.png\";}}'),(354,105,'_edit_last','1'),(363,112,'_elementor_version','0.4'),(364,112,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}');
INSERT INTO `wpct_postmeta` VALUES (365,112,'_elementor_data','[{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall.png\",\"id\":111},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogo.png\",\"id\":83},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Certified.png\",\"id\":60},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(362,112,'_elementor_edit_mode','builder'),(361,111,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:29:\"2018/03/notaryBondedSmall.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"notaryBondedSmall-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:27:\"notaryBondedSmall-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"notaryBondedSmall-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"notaryBondedSmall-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"notaryBondedSmall-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"notaryBondedSmall-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(374,115,'_wp_attached_file','2018/03/VIPlogoSmall.png'),(367,113,'_wp_attached_file','2018/03/CertifiedSmall.png'),(368,113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:249;s:4:\"file\";s:26:\"2018/03/CertifiedSmall.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"CertifiedSmall-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:24:\"CertifiedSmall-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"CertifiedSmall-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"CertifiedSmall-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"CertifiedSmall-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"CertifiedSmall-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(388,119,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(389,119,'_elementor_data','[{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(387,119,'_elementor_version','0.4'),(386,119,'_elementor_edit_mode','builder'),(375,115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:250;s:6:\"height\";i:249;s:4:\"file\";s:24:\"2018/03/VIPlogoSmall.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"VIPlogoSmall-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:22:\"VIPlogoSmall-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"VIPlogoSmall-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"VIPlogoSmall-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"VIPlogoSmall-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"VIPlogoSmall-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(382,117,'_wp_attached_file','2018/03/notaryBondedSmall-1.png'),(383,117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:240;s:4:\"file\";s:31:\"2018/03/notaryBondedSmall-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"notaryBondedSmall-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:29:\"notaryBondedSmall-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"notaryBondedSmall-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"notaryBondedSmall-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"notaryBondedSmall-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"notaryBondedSmall-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(384,118,'_wp_attached_file','2018/03/CertifiedSmall-1.png'),(385,118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:240;s:6:\"height\";i:239;s:4:\"file\";s:28:\"2018/03/CertifiedSmall-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"CertifiedSmall-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:26:\"CertifiedSmall-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"CertifiedSmall-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"CertifiedSmall-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"CertifiedSmall-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"CertifiedSmall-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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,120,'_elementor_edit_mode','builder'),(392,120,'_elementor_version','0.4'),(393,120,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(394,120,'_elementor_data','[{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(395,120,'_elementor_css','a:3:{s:4:\"time\";i:1521230760;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(396,121,'_elementor_edit_mode','builder'),(397,121,'_elementor_version','0.4'),(398,121,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(399,121,'_elementor_data','[{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(443,130,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(401,122,'_elementor_edit_mode','builder'),(402,122,'_elementor_version','0.4'),(403,122,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(404,122,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"rgba(193,132,208,0.83)\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(405,122,'_elementor_css','a:3:{s:4:\"time\";i:1521231147;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(440,130,'_elementor_edit_mode','builder'),(412,124,'_elementor_edit_mode','builder'),(413,124,'_elementor_version','0.4'),(414,124,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(415,124,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"rgba(193,132,208,0.83)\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(441,130,'_elementor_version','0.4'),(442,130,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(428,127,'_elementor_edit_mode','builder'),(429,127,'_elementor_version','0.4'),(417,125,'_elementor_edit_mode','builder'),(418,125,'_elementor_version','0.4'),(419,125,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(420,125,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(421,125,'_elementor_css','a:3:{s:4:\"time\";i:1521232417;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(423,126,'_elementor_edit_mode','builder'),(424,126,'_elementor_version','0.4'),(425,126,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(426,126,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"xl\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(427,126,'_elementor_css','a:3:{s:4:\"time\";i:1521232458;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(430,127,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(431,127,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Experience design at scale\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27d5105e\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6142964\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"158b463f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"35bc961\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":45,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399607_Illustration.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e2ba7f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"24aa2034\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":46,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399614_Social_Media.png\"},\"align\":\"left\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"10a816d2\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Understand your user experience\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e575cbd\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"22df6c5b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(449,131,'_elementor_css','a:3:{s:4:\"time\";i:1521343248;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(454,133,'_elementor_edit_mode','builder'),(455,133,'_elementor_version','0.4'),(456,133,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(457,133,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"51b1b41\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"\",\"_id\":\"5ee78fe\"}]},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(496,141,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(459,134,'_elementor_edit_mode','builder'),(460,134,'_elementor_version','0.4'),(461,134,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(462,134,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Testimonials\",\"text\":\"\",\"view\":\"1\"}},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"51b1b41\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"[testimonial_view id=2]\",\"_id\":\"5ee78fe\"}]},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(463,134,'_elementor_css','a:3:{s:4:\"time\";i:1521344580;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(465,135,'_elementor_edit_mode','builder'),(466,135,'_elementor_version','0.4'),(467,135,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(468,135,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Testimonials\",\"text\":\"\",\"view\":\"1\"}},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"51b1b41\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"5ee78fe\"}]},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(469,135,'_elementor_css','a:3:{s:4:\"time\";i:1521344987;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(471,136,'_edit_last','1'),(472,136,'_edit_lock','1521555462:1'),(473,136,'_wp_page_template','default'),(474,136,'client_name','Jamal H.'),(475,136,'email','jamal@hallmarkbrokers.com'),(476,136,'company_name','Hallmark Business Broker'),(477,136,'company_website',''),(478,136,'nofollow','default'),(486,139,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(487,139,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"be209db\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#eeeeee\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#eeeeee\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"reverse_order_mobile\":\"reverse-mobile\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Testimonials\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\",\"_background_color\":\"rgba(193,132,208,0.78)\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"51b1b41\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"5ee78fe\"}]},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6bceffbf\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"structure\":\"20\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"738fe41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"71133ee6\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"15b3221b\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"remain responsive across devices\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"357f6ee9\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"17\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7383d7\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Read More\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"#cc2e72\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.3},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false},{\"id\":\"52c3d54f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"59647219\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":47,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399594_Web_Design.png\"},\"align\":\"right\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_style_image\":\"\",\"space\":{\"unit\":\"%\",\"size\":\"60\"},\"opacity\":{\"unit\":\"px\",\"size\":\"0.8\"},\"section_style_caption\":\"\",\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"align_tablet\":\"center\",\"align_mobile\":\"center\",\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3612381c\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4ef13c43\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"19c0480c\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"fall in love with our features\\n\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c08f45e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#cc2e72\",\"width\":{\"unit\":\"%\",\"size\":10},\"align\":\"center\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ac1aea4\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"gap\":\"wider\",\"structure\":\"20\",\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"column_position_inner\":\"middle\",\"content_position_inner\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"2f48f7f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"2539a6fe\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":48,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399662_Marketing.png\"},\"title_text\":\"Real time stats\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"20004616\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":49,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399671_SEO.png\"},\"title_text\":\"Multilingual & translatable\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"2\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"5c2e1bac\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":50,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399715_E-Commerce.png\"},\"title_text\":\"Less plugins needed\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"32b66ebb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"ae15e5d\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":51,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399674_App_Development.png\"},\"title_text\":\"Amazingly responsive\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"64ad8540\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":52,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399667_Newsletter.png\"},\"title_text\":\"Community builder\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"23e7e71\",\"elType\":\"widget\",\"settings\":{\"section_image\":\"\",\"image\":{\"id\":53,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/1470399656_Branding.png\"},\"title_text\":\"Easy to use interface\",\"description_text\":\"Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"position\":\"left\",\"section_style_image\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":\"30\"},\"image_size\":{\"unit\":\"%\",\"size\":\"25\"},\"section_style_content\":\"\",\"content_vertical_alignment\":\"middle\",\"heading_title\":\"\",\"title_color\":\"#cc2e72\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":27},\"title_typography_font_weight\":\"500\",\"heading_description\":\"\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"300\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"23\"},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"25\"},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6e789cd6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"4cf4e3\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"Make a beautiful website\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"44\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"38\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b55bedc\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"It has never been easier to create pages and websites on WordPress\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"medium\",\"header_size\":\"p\",\"section_title_style\":\"\",\"title_color\":\"rgba(255,255,255,0.68)\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"21\"},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"3\",\"left\":\"20\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5abc5851\",\"elType\":\"widget\",\"settings\":{\"section_button\":\"\",\"text\":\"Click me\",\"link\":{\"is_external\":\"\",\"url\":\"#\"},\"size\":\"md\",\"section_style\":\"\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":\"15\"},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3.5},\"background_color\":\"#cc2e72\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"section_hover\":\"\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#cc2e72\",\"button_hover_border_color\":\"#cc2e72\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p>Image Source: <a href=\\\"http:\\/\\/www.wocintechchat.com\\/\\\">WOCinTechChat<\\/a>, <a href=\\\"https:\\/\\/www.iconfinder.com\\/iconsets\\/elpis\\\">Icon Finder<\\/a><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(494,141,'_elementor_edit_mode','builder'),(495,141,'_elementor_version','0.4'),(484,139,'_elementor_edit_mode','builder'),(485,139,'_elementor_version','0.4'),(521,147,'_elementor_edit_mode','builder'),(522,147,'_elementor_version','0.4'),(523,147,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(506,142,'featured_image','http://moto-noto.com/wp-content/uploads/2018/03/NegronLogo.png'),(507,142,'_thumbnail_id','143'),(508,142,'_edit_lock','1521347607:1'),(509,142,'_edit_last','1'),(510,142,'_wp_page_template','default'),(511,142,'nofollow','default'),(512,145,'_elementor_edit_mode','builder'),(513,145,'_elementor_version','0.4'),(514,145,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(515,145,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"Testimonials\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"51b1b41\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"5ee78fe\"}],\"title_color\":\"#c184d0\",\"_z_index\":0},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 12px;\\\"><strong>Copyright \\u00a9 2018 by: &nbsp;<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong>\\n<strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;By: &nbsp;<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\\n\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(516,145,'_elementor_css','a:3:{s:4:\"time\";i:1521347186;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(519,146,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(520,146,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"51b1b41\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"5ee78fe\"}],\"title_color\":\"#c184d0\",\"_z_index\":0},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 12px;\\\"><strong>Copyright \\u00a9 2018 by: &nbsp;<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong>\\n<strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;By: &nbsp;<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\\n\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(524,147,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"51b1b41\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"5ee78fe\"}],\"title_color\":\"#c184d0\",\"_z_index\":0},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 12px;\\\"><strong>Copyright \\u00a9 2018 by: &nbsp;<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong>\\n<strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;By: &nbsp;<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\\n\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(525,148,'_elementor_edit_mode','builder'),(526,148,'_elementor_version','0.4'),(527,148,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(528,148,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"51b1b41\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"5ee78fe\"}],\"title_color\":\"#c184d0\",\"_z_index\":0},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 12px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><br \\/> <strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(539,151,'_elementor_edit_mode','builder'),(535,150,'_elementor_edit_mode','builder'),(551,154,'_elementor_edit_mode','builder'),(530,149,'_elementor_edit_mode','builder'),(531,149,'_elementor_version','0.4'),(532,149,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(533,149,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":\"180\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"51b1b41\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"5ee78fe\"}],\"title_color\":\"#c184d0\",\"_z_index\":0},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 12px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><br \\/> <strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(534,149,'_elementor_css','a:3:{s:4:\"time\";i:1521348655;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(536,150,'_elementor_version','0.4'),(537,150,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(538,150,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"51b1b41\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"5ee78fe\"}],\"title_color\":\"#c184d0\",\"_z_index\":0},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 12px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><br \\/> <strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(540,151,'_elementor_version','0.4'),(541,151,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(542,151,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"51b1b41\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"5ee78fe\"}],\"title_color\":\"#c184d0\",\"_z_index\":0},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 12px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><br \\/> <strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(549,153,'_wp_attached_file','2018/03/Agenda1.png'),(550,153,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:870;s:4:\"file\";s:19:\"2018/03/Agenda1.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Agenda1-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:19:\"Agenda1-300x136.png\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"Agenda1-768x348.png\";s:5:\"width\";i:768;s:6:\"height\";i:348;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"Agenda1-1024x464.png\";s:5:\"width\";i:1024;s:6:\"height\";i:464;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:17:\"Agenda1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"Agenda1-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:19:\"Agenda1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:19:\"Agenda1-350x159.png\";s:5:\"width\";i:350;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"Agenda1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:19:\"Agenda1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:19:\"Agenda1-350x159.png\";s:5:\"width\";i:350;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"Agenda1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(553,154,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(554,154,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"51b1b41\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"5ee78fe\"}],\"title_color\":\"#c184d0\",\"_z_index\":0},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 12px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><br \\/> <strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(552,154,'_elementor_version','0.4'),(555,155,'_elementor_edit_mode','builder'),(556,155,'_elementor_version','0.4'),(557,155,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}');
INSERT INTO `wpct_postmeta` VALUES (558,155,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"51b1b41\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"5ee78fe\"}],\"title_color\":\"#c184d0\",\"_z_index\":0},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 12px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><br \\/> <strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(576,159,'_elementor_edit_mode','builder'),(571,158,'_elementor_edit_mode','builder'),(577,159,'_elementor_version','0.4'),(578,159,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(566,157,'_elementor_edit_mode','builder'),(567,157,'_elementor_version','0.4'),(568,157,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(560,156,'_elementor_edit_mode','builder'),(561,156,'_elementor_version','0.4'),(562,156,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(563,156,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"51b1b41\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"5ee78fe\"}],\"title_color\":\"#c184d0\",\"_z_index\":0},\"elements\":[],\"widgetType\":\"accordion\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Toggle #1\",\"tab_content\":\"<p>I am item content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"92f1f44\"},{\"tab_title\":\"Toggle #2\",\"tab_content\":\"<p>I am item content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.<\\/p>\",\"_id\":\"1f31a7d\"}]},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 12px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><br \\/> <strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(564,156,'_elementor_css','a:3:{s:4:\"time\";i:1521349501;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(569,157,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"51b1b41\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"5ee78fe\"}],\"title_color\":\"#c184d0\",\"_z_index\":0},\"elements\":[],\"widgetType\":\"accordion\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Toggle #1\",\"tab_content\":\"[testimonial_view id=2]\",\"_id\":\"92f1f44\"}]},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 12px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><br \\/> <strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(570,157,'_elementor_css','a:3:{s:4:\"time\";i:1521349771;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(572,158,'_elementor_version','0.4'),(573,158,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(574,158,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"51b1b41\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"5ee78fe\"}],\"title_color\":\"#c184d0\",\"_z_index\":0},\"elements\":[],\"widgetType\":\"accordion\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}]},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 12px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><br \\/> <strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(579,159,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 12px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><br \\/> <strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(580,159,'_elementor_css','a:3:{s:4:\"time\";i:1521349960;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(582,160,'_elementor_edit_mode','builder'),(583,160,'_elementor_version','0.4'),(584,160,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(585,160,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong>\\n<strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(586,160,'_elementor_css','a:3:{s:4:\"time\";i:1521350026;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(594,162,'_elementor_version','0.4'),(595,162,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(596,162,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"9c17b8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"aa94613\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":false},{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong>\\n<strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(593,162,'_elementor_edit_mode','builder'),(607,167,'_elementor_edit_mode','builder'),(608,167,'_elementor_version','0.4'),(609,167,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(610,167,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try our best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong>\\n<strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(611,168,'_elementor_edit_mode','builder'),(612,168,'_elementor_version','0.4'),(613,168,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(614,168,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try our best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong>\\n<strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(621,170,'_elementor_edit_mode','builder'),(622,170,'_elementor_version','0.4'),(623,170,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(624,170,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try our best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":28},\"description_typography_font_weight\":\"600\",\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong>\\n<strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(626,171,'_elementor_edit_mode','builder'),(627,171,'_elementor_version','0.4'),(628,171,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(629,171,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try our best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":26},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong>\\n<strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(630,171,'_elementor_css','a:3:{s:4:\"time\";i:1521355159;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(631,172,'_elementor_edit_mode','builder'),(632,172,'_elementor_version','0.4'),(633,172,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(634,172,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try our best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":26},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong>\\n<strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(636,173,'_elementor_edit_mode','builder'),(637,173,'_elementor_version','0.4'),(638,173,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(639,173,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try our best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":26},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong>\\n<strong>\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0\\u00a0By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(640,173,'_elementor_css','a:3:{s:4:\"time\";i:1521355290;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(642,174,'_elementor_edit_mode','builder'),(643,174,'_elementor_version','0.4'),(644,174,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(645,174,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try our best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":26},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(646,174,'_elementor_css','a:3:{s:4:\"time\";i:1521355598;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(648,175,'_elementor_edit_mode','builder'),(649,175,'_elementor_version','0.4'),(650,175,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(651,175,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try our best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(652,175,'_elementor_css','a:3:{s:4:\"time\";i:1521355861;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(657,179,'_elementor_edit_mode','builder'),(658,179,'_elementor_version','0.4'),(659,179,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(660,179,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\"},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(661,179,'_elementor_css','a:3:{s:4:\"time\";i:1521355959;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(662,180,'_elementor_edit_mode','builder'),(663,180,'_elementor_version','0.4'),(664,180,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(665,180,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c9dea19\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Serving the greater Sarasota, FL area<\\/p>\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(666,181,'_elementor_edit_mode','builder'),(667,181,'_elementor_version','0.4'),(668,181,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(669,181,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"space_between_widgets\":20},\"elements\":[{\"id\":\"0600aea\",\"elType\":\"widget\",\"settings\":{\"title\":\"MOTO-NOTO\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"900\",\"typography_font_style\":\"normal\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.7},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":3},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c9dea19\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Serving the greater Sarasota, FL area<\\/strong><\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(677,182,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1200;s:4:\"file\";s:20:\"2018/03/MotoLogo.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"MotoLogo-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:20:\"MotoLogo-300x180.png\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"MotoLogo-768x461.png\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"MotoLogo-1024x614.png\";s:5:\"width\";i:1024;s:6:\"height\";i:614;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:18:\"MotoLogo-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"MotoLogo-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"MotoLogo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"MotoLogo-350x210.png\";s:5:\"width\";i:350;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"MotoLogo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"MotoLogo-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"MotoLogo-350x210.png\";s:5:\"width\";i:350;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"MotoLogo-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(671,182,'_wp_attached_file','2018/03/MotoLogo.png'),(689,187,'_elementor_edit_mode','builder'),(690,187,'_elementor_version','0.4'),(691,187,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(684,186,'_elementor_edit_mode','builder'),(685,186,'_elementor_version','0.4'),(686,186,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(687,186,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"b982401\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"space_between_widgets\":20,\"_inline_size\":null},\"elements\":[{\"id\":\"1e20056\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo-1.png\",\"id\":185},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"\",\"height\":\"120\"},\"align\":\"right\",\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"c9dea19\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Serving the greater Sarasota, FL area<\\/strong><\\/p>\",\"align\":\"left\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":26},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.5},\"_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(682,185,'_wp_attached_file','2018/03/MotoLogo-1.png'),(683,185,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1632;s:6:\"height\";i:740;s:4:\"file\";s:22:\"2018/03/MotoLogo-1.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"MotoLogo-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:22:\"MotoLogo-1-300x136.png\";s:5:\"width\";i:300;s:6:\"height\";i:136;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"MotoLogo-1-768x348.png\";s:5:\"width\";i:768;s:6:\"height\";i:348;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"MotoLogo-1-1024x464.png\";s:5:\"width\";i:1024;s:6:\"height\";i:464;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:20:\"MotoLogo-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"MotoLogo-1-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"MotoLogo-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"MotoLogo-1-350x159.png\";s:5:\"width\";i:350;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"MotoLogo-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"MotoLogo-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"MotoLogo-1-350x159.png\";s:5:\"width\";i:350;s:6:\"height\";i:159;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"MotoLogo-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(708,191,'_elementor_edit_mode','builder'),(709,191,'_elementor_version','0.4'),(692,187,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo-1.png\",\"id\":185},\"title_text\":\"Serving the greater Sarasota, FL area\",\"description_text\":\"\",\"position\":\"left\",\"image_size\":{\"unit\":\"%\",\"size\":18},\"text_align\":\"left\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":31},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(693,187,'_elementor_css','a:3:{s:4:\"time\";i:1521383269;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(695,188,'_wp_attached_file','2018/03/MotoLogo2.png'),(696,188,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3600;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2018/03/MotoLogo2.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"MotoLogo2-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:20:\"MotoLogo2-300x50.png\";s:5:\"width\";i:300;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"MotoLogo2-768x128.png\";s:5:\"width\";i:768;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"MotoLogo2-1024x171.png\";s:5:\"width\";i:1024;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:19:\"MotoLogo2-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"MotoLogo2-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"MotoLogo2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"MotoLogo2-350x58.png\";s:5:\"width\";i:350;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"MotoLogo2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"MotoLogo2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"MotoLogo2-350x58.png\";s:5:\"width\";i:350;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"MotoLogo2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(724,195,'_elementor_edit_mode','builder'),(697,189,'_elementor_edit_mode','builder'),(698,189,'_elementor_version','0.4'),(699,189,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(700,189,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo2.png\",\"id\":188},\"title_text\":\"Serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(701,189,'_elementor_css','a:3:{s:4:\"time\";i:1521383944;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(703,190,'_elementor_edit_mode','builder'),(704,190,'_elementor_version','0.4'),(705,190,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(706,190,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo2.png\",\"id\":188},\"title_text\":\"Serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(707,190,'_elementor_css','a:3:{s:4:\"time\";i:1521384655;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(710,191,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(711,191,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo2.png\",\"id\":188},\"title_text\":\"Serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(712,192,'_elementor_edit_mode','builder'),(713,192,'_elementor_version','0.4'),(714,192,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(715,192,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo2.png\",\"id\":188},\"title_text\":\"Serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(720,194,'_elementor_edit_mode','builder'),(716,193,'_elementor_edit_mode','builder'),(717,193,'_elementor_version','0.4'),(718,193,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(719,193,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo2.png\",\"id\":188},\"title_text\":\"Serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to these:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(721,194,'_elementor_version','0.4'),(722,194,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(723,194,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo2.png\",\"id\":188},\"title_text\":\"Serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, Lorna, by e-mail or by calling me with the information below:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(725,195,'_elementor_version','0.4'),(726,195,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(727,195,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo2.png\",\"id\":188},\"title_text\":\"Serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What set me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Lorna, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(728,196,'_elementor_edit_mode','builder'),(729,196,'_elementor_version','0.4'),(730,196,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(731,196,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo2.png\",\"id\":188},\"title_text\":\"Serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Lorna, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(732,197,'_elementor_edit_mode','builder'),(733,197,'_elementor_version','0.4'),(734,197,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(735,197,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo2.png\",\"id\":188},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Lorna, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(742,199,'_elementor_edit_mode','builder'),(743,199,'_elementor_version','0.4'),(737,198,'_elementor_edit_mode','builder'),(738,198,'_elementor_version','0.4'),(739,198,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(740,198,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo2.png\",\"id\":188},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#575659\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Lorna, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(741,198,'_elementor_css','a:3:{s:4:\"time\";i:1521387020;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(744,199,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(745,199,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo2.png\",\"id\":188},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Lorna, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(746,200,'_wp_attached_file','2018/03/MotoLogo3.png'),(747,200,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3600;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2018/03/MotoLogo3.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"MotoLogo3-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:20:\"MotoLogo3-300x50.png\";s:5:\"width\";i:300;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"MotoLogo3-768x128.png\";s:5:\"width\";i:768;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"MotoLogo3-1024x171.png\";s:5:\"width\";i:1024;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:19:\"MotoLogo3-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"MotoLogo3-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"MotoLogo3-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"MotoLogo3-350x58.png\";s:5:\"width\";i:350;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"MotoLogo3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"MotoLogo3-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"MotoLogo3-350x58.png\";s:5:\"width\";i:350;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"MotoLogo3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(759,204,'_elementor_version','0.4'),(760,204,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(761,204,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-1.png\",\"id\":202},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Lorna, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(752,202,'_wp_attached_file','2018/03/MotoLogo3-1.png'),(753,202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3600;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2018/03/MotoLogo3-1.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"MotoLogo3-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:22:\"MotoLogo3-1-300x50.png\";s:5:\"width\";i:300;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"MotoLogo3-1-768x128.png\";s:5:\"width\";i:768;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"MotoLogo3-1-1024x171.png\";s:5:\"width\";i:1024;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:21:\"MotoLogo3-1-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"MotoLogo3-1-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"MotoLogo3-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"MotoLogo3-1-350x58.png\";s:5:\"width\";i:350;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"MotoLogo3-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"MotoLogo3-1-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"MotoLogo3-1-350x58.png\";s:5:\"width\";i:350;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"MotoLogo3-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(758,204,'_elementor_edit_mode','builder'),(762,205,'_wp_attached_file','2018/03/MotoLogo3-2.png'),(763,205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3600;s:6:\"height\";i:600;s:4:\"file\";s:23:\"2018/03/MotoLogo3-2.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"MotoLogo3-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:22:\"MotoLogo3-2-300x50.png\";s:5:\"width\";i:300;s:6:\"height\";i:50;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"MotoLogo3-2-768x128.png\";s:5:\"width\";i:768;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"MotoLogo3-2-1024x171.png\";s:5:\"width\";i:1024;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:21:\"MotoLogo3-2-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"MotoLogo3-2-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"MotoLogo3-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"MotoLogo3-2-350x58.png\";s:5:\"width\";i:350;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"MotoLogo3-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"MotoLogo3-2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"MotoLogo3-2-350x58.png\";s:5:\"width\";i:350;s:6:\"height\";i:58;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"MotoLogo3-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(764,206,'_elementor_edit_mode','builder'),(765,206,'_elementor_version','0.4'),(766,206,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}');
INSERT INTO `wpct_postmeta` VALUES (767,206,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":94,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Lorna, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(769,207,'_wp_attached_file','2018/03/snapdocsLogo2.png'),(770,207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1340;s:6:\"height\";i:1340;s:4:\"file\";s:25:\"2018/03/snapdocsLogo2.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"snapdocsLogo2-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:25:\"snapdocsLogo2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"snapdocsLogo2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"snapdocsLogo2-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:23:\"snapdocsLogo2-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"snapdocsLogo2-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"snapdocsLogo2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"snapdocsLogo2-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"snapdocsLogo2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"snapdocsLogo2-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"snapdocsLogo2-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"snapdocsLogo2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(771,208,'_elementor_edit_mode','builder'),(772,208,'_elementor_version','0.4'),(773,208,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(774,208,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Lorna, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(775,208,'_elementor_css','a:3:{s:4:\"time\";i:1521389053;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(784,210,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(785,210,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#c184d0\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#c184d0\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#c184d0\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#c184d0\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Lorna, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(782,210,'_elementor_edit_mode','builder'),(783,210,'_elementor_version','0.4'),(787,211,'_elementor_edit_mode','builder'),(788,211,'_elementor_version','0.4'),(789,211,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(790,211,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#b959d1\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"title_color\":\"#b959d1\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#b959d1\"},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Lorna, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(791,211,'_elementor_css','a:3:{s:4:\"time\";i:1521396171;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(859,227,'_elementor_version','0.4'),(860,227,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(792,212,'_elementor_edit_mode','builder'),(793,212,'_elementor_version','0.4'),(794,212,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(795,212,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#b959d1\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\"},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"title_color\":\"#b959d1\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#b959d1\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Lorna, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(802,214,'_elementor_edit_mode','builder'),(803,214,'_elementor_version','0.4'),(797,213,'_elementor_edit_mode','builder'),(798,213,'_elementor_version','0.4'),(799,213,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(800,213,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#b959d1\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":500},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"title_color\":\"#b959d1\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#b959d1\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Lorna, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(801,213,'_elementor_css','a:3:{s:4:\"time\";i:1521396888;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(804,214,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(805,214,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#b959d1\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"fadeInUp\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"title_color\":\"#b959d1\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#b959d1\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Lorna, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(840,223,'_elementor_version','0.4'),(807,215,'_wp_attached_file','2018/03/MN-logo-car.png'),(808,215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1168;s:6:\"height\";i:1168;s:4:\"file\";s:23:\"2018/03/MN-logo-car.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"MN-logo-car-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:\"MN-logo-car-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"MN-logo-car-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"MN-logo-car-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:21:\"MN-logo-car-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"MN-logo-car-825x510.png\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"MN-logo-car-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"MN-logo-car-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"MN-logo-car-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"MN-logo-car-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"MN-logo-car-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"MN-logo-car-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;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:{}}}'),(809,216,'_wp_attached_file','2018/03/cropped-MN-logo-car.png'),(810,216,'_wp_attachment_context','site-icon'),(811,216,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:31:\"2018/03/cropped-MN-logo-car.png\";s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"cropped-MN-logo-car-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:31:\"cropped-MN-logo-car-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:29:\"cropped-MN-logo-car-75x75.png\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:31:\"cropped-MN-logo-car-512x510.png\";s:5:\"width\";i:512;s:6:\"height\";i:510;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"cropped-MN-logo-car-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"cropped-MN-logo-car-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"cropped-MN-logo-car-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"cropped-MN-logo-car-200x200.png\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"cropped-MN-logo-car-350x350.png\";s:5:\"width\";i:350;s:6:\"height\";i:350;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"cropped-MN-logo-car-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:31:\"cropped-MN-logo-car-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:31:\"cropped-MN-logo-car-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:31:\"cropped-MN-logo-car-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:29:\"cropped-MN-logo-car-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;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:{}}}'),(814,218,'_elementor_edit_mode','builder'),(815,218,'_elementor_version','0.4'),(816,218,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(817,218,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#b959d1\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"title_color\":\"#b959d1\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#b959d1\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Lorna, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(818,218,'_elementor_css','a:3:{s:4:\"time\";i:1521396952;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(827,220,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(828,220,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#b959d1\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"title_color\":\"#b959d1\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#b959d1\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Lorna, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"lornaaline@prodigy.net\",\"link\":{\"url\":\"mailto:lornaaline@prodigy.net\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(858,227,'_elementor_edit_mode','builder'),(825,220,'_elementor_edit_mode','builder'),(826,220,'_elementor_version','0.4'),(839,223,'_elementor_edit_mode','builder'),(837,222,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(838,222,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#b959d1\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"title_color\":\"#b959d1\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#b959d1\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(835,222,'_elementor_edit_mode','builder'),(836,222,'_elementor_version','0.4'),(841,223,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(842,223,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#b959d1\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"title_color\":\"#b959d1\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(843,224,'_elementor_edit_mode','builder'),(844,224,'_elementor_version','0.4'),(845,224,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(846,224,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#b959d1\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"title_color\":\"#6f1683\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(847,225,'_elementor_edit_mode','builder'),(848,225,'_elementor_version','0.4'),(849,225,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(850,225,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#b959d1\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"title_color\":\"#6f1683\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#a43cbd\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#a43cbd\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#a43cbd\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(852,226,'_elementor_edit_mode','builder'),(853,226,'_elementor_version','0.4'),(854,226,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(855,226,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f213f8c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"size\":\"xl\",\"header_size\":\"h1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3},\"title_color\":\"#6f1683\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(856,226,'_elementor_css','a:3:{s:4:\"time\";i:1521549923;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(861,227,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21c5c38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"title_color\":\"#6f1683\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(862,227,'_elementor_css','a:3:{s:4:\"time\";i:1521550132;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(863,228,'_elementor_edit_mode','builder'),(864,228,'_elementor_version','0.4'),(865,228,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(866,228,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.84)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(868,229,'_elementor_edit_mode','builder'),(869,229,'_elementor_version','0.4'),(870,229,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(871,229,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(872,229,'_elementor_css','a:3:{s:4:\"time\";i:1521550495;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(881,231,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(882,231,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"(Sarasota, Manatee, and western DeSoto counties and by appointments)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"(301) 213-9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(879,231,'_elementor_edit_mode','builder'),(880,231,'_elementor_version','0.4'),(887,233,'_elementor_edit_mode','builder'),(888,233,'_elementor_version','0.4'),(889,233,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(890,233,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"(Sarasota, Manatee, and western DeSoto counties and by appointments)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"301.213.9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(891,234,'_elementor_edit_mode','builder'),(892,234,'_elementor_version','0.4'),(893,234,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(894,234,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"(Sarasota, Manatee, and western DeSoto counties and by appointments)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"301.213.9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(895,235,'_edit_lock','1521551510:1'),(896,235,'_edit_last','1'),(897,235,'_elementor_edit_mode','builder'),(898,236,'_elementor_edit_mode','builder'),(899,236,'_elementor_version','0.4'),(900,236,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(901,236,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"(Sarasota, Manatee, and western DeSoto counties and by appointments)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"349f797\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d5c59a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28544c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"title_color\":\"#ebca41\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b78e28c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7bc137a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"align\":\"left\",\"title_color\":\"#ebca41\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_id\":\"testimonialsheader\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"301.213.9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(902,237,'_elementor_edit_mode','builder'),(903,237,'_elementor_version','0.4'),(904,237,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(905,237,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"(Sarasota, Manatee, and western DeSoto counties and by appointments)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"349f797\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d5c59a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28544c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"link\":{\"url\":\"#testimonialsheader\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"title_color\":\"#ebca41\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b78e28c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7bc137a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"align\":\"left\",\"title_color\":\"#ebca41\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_element_id\":\"testimonialsheader\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"301.213.9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(907,238,'_elementor_edit_mode','builder'),(908,238,'_elementor_version','0.4'),(909,238,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(910,238,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"(Sarasota, Manatee, and western DeSoto counties and by appointments)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"349f797\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d5c59a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28544c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"link\":{\"url\":\"#testimonialsheader\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"title_color\":\"#ebca41\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b78e28c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7bc137a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Add Your Heading Text Here\",\"align\":\"left\",\"title_color\":\"#ebca41\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\",\"_element_id\":\"testimonialsheader\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"301.213.9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(911,238,'_elementor_css','a:3:{s:4:\"time\";i:1521552309;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(913,239,'_elementor_edit_mode','builder'),(914,239,'_elementor_version','0.4'),(915,239,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(916,239,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"(Sarasota, Manatee, and western DeSoto counties and by appointments)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"349f797\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d5c59a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28544c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"link\":{\"url\":\"#testimonialsheader\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"title_color\":\"#ebca41\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b78e28c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7bc137a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"align\":\"left\",\"title_color\":\"#ebca41\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\",\"_element_id\":\"testimonialsheader\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\",\"_element_id\":\"contactme\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"301.213.9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(917,239,'_elementor_css','a:3:{s:4:\"time\";i:1521552360;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(918,240,'_elementor_edit_mode','builder'),(919,240,'_elementor_version','0.4'),(920,240,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(921,240,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"(Sarasota, Manatee, and western DeSoto counties and by appointments)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"349f797\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d5c59a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28544c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"link\":{\"url\":\"#testimonialsheader\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"title_color\":\"#ebca41\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b78e28c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7bc137a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"link\":{\"url\":\"#contactme\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"title_color\":\"#ebca41\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\",\"_element_id\":\"testimonialsheader\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\",\"_element_id\":\"contactme\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"301.213.9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(930,242,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(931,242,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"(Sarasota, Manatee, and western DeSoto counties and by appointments)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"349f797\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d5c59a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28544c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"TESTIMONIALS\",\"link\":{\"url\":\"#testimonialsheader\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"right\",\"title_color\":\"#ebca41\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b78e28c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7bc137a\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT ME\",\"link\":{\"url\":\"#contactme\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"left\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\",\"_element_id\":\"testimonialsheader\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\",\"_element_id\":\"contactme\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"301.213.9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(928,242,'_elementor_edit_mode','builder'),(929,242,'_elementor_version','0.4'),(932,243,'_elementor_edit_mode','builder'),(933,243,'_elementor_version','0.4'),(934,243,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(935,243,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"(Sarasota, Manatee, and western DeSoto counties and by appointments)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"349f797\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d5c59a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28544c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"TESTIMONIALS\",\"link\":{\"url\":\"#testimonialsheader\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"right\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b78e28c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7bc137a\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT ME\",\"link\":{\"url\":\"#contactme\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"left\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"text_shadow_text_shadow_type\":\"yes\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\",\"_element_id\":\"testimonialsheader\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\",\"_element_id\":\"contactme\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"301.213.9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(936,244,'_elementor_edit_mode','builder'),(937,244,'_elementor_version','0.4'),(938,244,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(939,244,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"(Sarasota, Manatee, and western DeSoto counties and by appointments)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"349f797\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"d5c59a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28544c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"TESTIMONIALS\",\"link\":{\"url\":\"#testimonialsheader\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"right\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b78e28c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7bc137a\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT ME\",\"link\":{\"url\":\"#contactme\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"left\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"text_shadow_text_shadow_type\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\",\"_element_id\":\"testimonialsheader\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\",\"_element_id\":\"contactme\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"301.213.9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(940,245,'_elementor_edit_mode','builder'),(941,245,'_elementor_version','0.4'),(942,245,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(943,245,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"(Sarasota, Manatee, and western DeSoto counties and by appointments)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"349f797\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":0,\"bottom\":\"-15\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"-13\",\"bottom\":\"-13\",\"left\":\"-13\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5c59a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28544c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"TESTIMONIALS\",\"link\":{\"url\":\"#testimonialsheader\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"right\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b78e28c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7bc137a\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT ME\",\"link\":{\"url\":\"#contactme\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"left\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"text_shadow_text_shadow_type\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\",\"_element_id\":\"testimonialsheader\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\",\"_element_id\":\"contactme\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"301.213.9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(945,246,'_elementor_edit_mode','builder'),(946,246,'_elementor_version','0.4'),(947,246,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}');
INSERT INTO `wpct_postmeta` VALUES (948,246,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"(Sarasota, Manatee, and western DeSoto counties and by appointments)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"349f797\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"-13\",\"bottom\":\"-13\",\"left\":\"-13\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5c59a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28544c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"TESTIMONIALS\",\"link\":{\"url\":\"#testimonialsheader\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"right\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b78e28c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7bc137a\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT ME\",\"link\":{\"url\":\"#contactme\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"left\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"text_shadow_text_shadow_type\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\",\"_element_id\":\"testimonialsheader\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\",\"_element_id\":\"contactme\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"301.213.9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(949,246,'_elementor_css','a:3:{s:4:\"time\";i:1521553073;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(951,247,'_elementor_edit_mode','builder'),(952,247,'_elementor_version','0.4'),(953,247,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(954,247,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"(Sarasota, Manatee, and western DeSoto counties and by appointments)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"349f797\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"-13\",\"bottom\":\"-13\",\"left\":\"-13\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5c59a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28544c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"TESTIMONIALS\",\"link\":{\"url\":\"#testimonialsheader\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"right\",\"align_mobile\":\"center\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b78e28c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7bc137a\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT ME\",\"link\":{\"url\":\"#contactme\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"left\",\"align_mobile\":\"center\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"text_shadow_text_shadow_type\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\",\"_element_id\":\"testimonialsheader\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\",\"_element_id\":\"contactme\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"301.213.9102\",\"link\":{\"url\":\"tel:3012139102\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(955,247,'_elementor_css','a:3:{s:4:\"time\";i:1521553105;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(962,249,'_elementor_edit_mode','builder'),(963,249,'_elementor_version','0.4'),(964,249,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(965,249,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"(Sarasota, Manatee, and western DeSoto counties and by appointments)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"349f797\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"-13\",\"bottom\":\"-13\",\"left\":\"-13\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5c59a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28544c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"TESTIMONIALS\",\"link\":{\"url\":\"#testimonialsheader\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"right\",\"align_mobile\":\"center\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b78e28c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7bc137a\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT ME\",\"link\":{\"url\":\"#contactme\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"left\",\"align_mobile\":\"center\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"text_shadow_text_shadow_type\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\",\"_element_id\":\"testimonialsheader\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\",\"_element_id\":\"contactme\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"941.447.1258\",\"link\":{\"url\":\"tel:9414471258\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(966,249,'_elementor_css','a:3:{s:4:\"time\";i:1521554370;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(972,251,'_wp_attached_file','2018/03/selfImage.jpg'),(973,251,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:375;s:4:\"file\";s:21:\"2018/03/selfImage.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"selfImage-150x150.jpg\";s:5:\"width\";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:\"selfImage-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"widget-thumbnail\";a:4:{s:4:\"file\";s:19:\"selfImage-75x75.jpg\";s:5:\"width\";i:75;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"selfImage-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:1;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"selfImage-350x263.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"selfImage-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"selfImage-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"selfImage-350x263.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"selfImage-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1487165853\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.65\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:15:\"0.0666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(997,13,'_oembed_a4c049a4cc0bb16982a614741a0656e9','{{unknown}}'),(996,13,'_oembed_609e2f129487c7c0e9c32bff8990ec1e','{{unknown}}'),(995,13,'_oembed_613398a226913553e78029313cb79e8f','{{unknown}}'),(994,13,'_oembed_a9f63b247d82b6381d1e0bd2dc2a76bf','{{unknown}}'),(984,254,'_elementor_edit_mode','builder'),(985,254,'_elementor_version','0.4'),(986,254,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(987,254,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"(Sarasota, Manatee, and western DeSoto counties and by appointments)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"349f797\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"-13\",\"bottom\":\"-13\",\"left\":\"-13\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5c59a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28544c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"TESTIMONIALS\",\"link\":{\"url\":\"#testimonialsheader\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"right\",\"align_mobile\":\"center\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b78e28c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7bc137a\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT ME\",\"link\":{\"url\":\"#contactme\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"left\",\"align_mobile\":\"center\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"text_shadow_text_shadow_type\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to: refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\",\"_element_id\":\"testimonialsheader\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\",\"_element_id\":\"contactme\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"941.447.1258\",\"link\":{\"url\":\"tel:9414471258\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(988,254,'_elementor_css','a:3:{s:4:\"time\";i:1521555086;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}'),(989,255,'_elementor_edit_mode','builder'),(990,255,'_elementor_version','0.4'),(991,255,'_elementor_page_settings','a:6:{s:21:\"background_background\";s:7:\"classic\";s:16:\"background_image\";a:2:{s:3:\"url\";s:71:\"http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg\";s:2:\"id\";i:15;}s:19:\"background_position\";s:13:\"center center\";s:21:\"background_attachment\";s:5:\"fixed\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:5:\"cover\";}'),(992,255,'_elementor_data','[{\"id\":\"daed377\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#b959d1\",\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":0},\"html_tag\":\"header\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"29c14eb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"57c7779\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/MotoLogo3-2.png\",\"id\":205},\"title_text\":\"Mobile Notary Public serving the greater Sarasota, FL area\",\"description_text\":\"(Sarasota, Manatee, and western DeSoto counties and by appointment)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":41},\"text_align\":\"center\",\"content_vertical_alignment\":\"bottom\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_animation\":\"slideInRight\",\"title_color\":\"#ffffff\",\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_weight\":\"600\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":0.8}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"349f797\",\"elType\":\"section\",\"settings\":{\"height_inner\":\"min-height\",\"custom_height_inner\":{\"unit\":\"px\",\"size\":0},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"-13\",\"right\":\"-13\",\"bottom\":\"-13\",\"left\":\"-13\",\"isLinked\":true}},\"elements\":[{\"id\":\"d5c59a8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"28544c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"TESTIMONIALS\",\"link\":{\"url\":\"#testimonialsheader\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"right\",\"align_mobile\":\"center\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b78e28c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7bc137a\",\"elType\":\"widget\",\"settings\":{\"title\":\"CONTACT ME\",\"link\":{\"url\":\"#contactme\",\"is_external\":\"\",\"nofollow\":\"\"},\"size\":\"small\",\"align\":\"left\",\"align_mobile\":\"center\",\"title_color\":\"#ebca41\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.1},\"text_shadow_text_shadow_type\":\"yes\",\"_padding\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-10\",\"left\":\"-10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"405bd5f3\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"600\"},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":30,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/25388715424_65480dbf18_k.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"background_attachment\":\"fixed\"},\"elements\":[{\"id\":\"6496017d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"_inline_size\":null},\"elements\":[{\"id\":\"7185dc26\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"What sets me apart\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":55},\"typography_font_weight\":\"300\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"42\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":38},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.4},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b5d932f\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"rgba(255,255,255,0.66)\",\"width\":{\"unit\":\"%\",\"size\":50},\"align\":\"center\",\"gap\":{\"unit\":\"px\",\"size\":2},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"f733ff5\",\"elType\":\"widget\",\"settings\":{\"title\":\"- Experience Matters -\",\"size\":\"large\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.4},\"_animation\":\"pulse\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18505178\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to: refinances, reverse mortgages, HELOC\'s, sale\\/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"small\",\"header_size\":\"p\",\"align\":\"center\",\"section_title_style\":\"\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2},\"_section_style\":\"\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.8},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"-0\",\"right\":\"-0\",\"bottom\":\"-0\",\"left\":\"-0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.2}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f624124\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"122885d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"49451f0e\",\"elType\":\"widget\",\"settings\":{\"section_image_carousel\":\"\",\"carousel\":[{\"id\":74,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_member_badge.png\"},{\"id\":72,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/nna_logo2.png\"},{\"id\":57,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/American-Society-of-Notaries.png\"}],\"thumbnail_custom_dimension\":{\"width\":\"200\",\"height\":\"150\"},\"slides_to_show\":\"3\",\"navigation\":\"arrows\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"section_additional_options\":\"\",\"section_style_navigation\":\"\",\"heading_style_arrows\":\"\",\"arrows_position\":\"outside\",\"arrows_size\":{\"unit\":\"px\",\"size\":24},\"arrows_color\":\"#999999\",\"heading_style_dots\":\"\",\"section_style_image\":\"\",\"image_spacing\":\"custom\",\"image_spacing_custom\":{\"unit\":\"px\",\"size\":78},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"slides_to_show_tablet\":\"3\",\"slides_to_show_mobile\":\"3\"},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"9cac235\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7723296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3e12a4e\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":27},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6ae11846\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1000},\"section_background\":\"\",\"background_background\":\"none\",\"background_color\":\"#f4f4f4\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"30\",\"bottom\":\"50\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"structure\":\"40\",\"animation\":\"lightSpeedIn\",\"animation_delay\":1000},\"elements\":[{\"id\":\"a0f50f3\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"7455d44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/notaryBondedSmall-1.png\",\"id\":117},\"title_text\":\"NOTARY\",\"description_text\":\"I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"7c3886d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"f60366f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/scales-of-justice.png\",\"id\":79},\"title_text\":\"SR. PARALEGAL\",\"description_text\":\"In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"a8f828f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"a5b6ea3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/VIPlogoSmall.png\",\"id\":115},\"title_text\":\"PRIVATE WEALTH\",\"description_text\":\"Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false},{\"id\":\"3acbba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"e11063a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/CertifiedSmall-1.png\",\"id\":118},\"title_text\":\"CERTIFIED\",\"description_text\":\"I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":65},\"text_align\":\"center\",\"content_vertical_alignment\":\"middle\",\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.7},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"_background_background\":\"classic\",\"_background_color\":\"rgba(214,207,156,0.93)\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7c648298\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rotateInUpLeft\"},\"elements\":[{\"id\":\"4cb2bdd2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"87f6994\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":20},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"52f58680\",\"elType\":\"widget\",\"settings\":{\"section_title\":\"\",\"title\":\"I work with hundreds of companies, including but not limited to:\",\"link\":{\"is_external\":\"\",\"url\":\"\"},\"size\":\"large\",\"header_size\":\"h3\",\"section_title_style\":\"\",\"title_color\":\"#444444\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":44},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"uppercase\",\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"35\"},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"1.3\"},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"1\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"1\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4816fdb\",\"elType\":\"widget\",\"settings\":{\"carousel\":[{\"id\":207,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/snapdocsLogo2.png\"},{\"id\":93,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/closingExchangeAlhpa.png\"},{\"id\":88,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/123notary-1.png\"}]},\"elements\":[],\"widgetType\":\"image-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1f524765\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1140\"},\"custom_height\":{\"unit\":\"px\",\"size\":0},\"section_background\":\"\",\"background_background\":\"classic\",\"background_image\":{\"id\":153,\"url\":\"http:\\/\\/moto-noto.com\\/wp-content\\/uploads\\/2018\\/03\\/Agenda1.png\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_overlay_title\":\"\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#727272\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.89},\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"text_align\":\"center\",\"section_advanced\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"30\",\"bottom\":\"80\",\"left\":\"30\",\"isLinked\":false},\"heading_visibility\":\"\",\"content_position\":\"middle\",\"animation\":\"rotateInUpRight\"},\"elements\":[{\"id\":\"14764420\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\",\"content_position\":\"center\",\"heading_color\":\"#c184d0\",\"color_text\":\"#ffffff\",\"text_align\":\"center\",\"color_link\":\"#ebca41\"},\"elements\":[{\"id\":\"53fc8889\",\"elType\":\"widget\",\"settings\":{\"section_divider\":\"\",\"weight\":{\"unit\":\"px\",\"size\":\"5\"},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":\"20\"},\"gap\":{\"unit\":\"px\",\"size\":\"25\"},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"align_mobile\":\"center\",\"align\":\"center\",\"_element_id\":\"testimonialsheader\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21bc7ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Testimonials<\\/h1>\",\"text_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.4},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"198cda5\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"text\":\"\",\"view\":\"1\"},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"wp-widget-strong-testimonials-view-widget\"},{\"id\":\"d54119a\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"Submit Your Own Testimony\",\"tab_content\":\"<p>[testimonial_view id=2]<\\/p>\",\"_id\":\"92f1f44\"}],\"title_color\":\"#6f1683\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"_animation\":\"pulse\",\"animation_duration\":\"fast\",\"_animation_delay\":0},\"elements\":[],\"widgetType\":\"toggle\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"866aefb\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":\"1000\"},\"custom_height\":{\"unit\":\"px\",\"size\":526},\"content_position\":\"middle\",\"section_background\":\"\",\"background_background\":\"classic\",\"background_color\":\"rgba(241,243,245,0.5)\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#d6d6d6\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-8,\"blur\":28,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.2)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"50\",\"bottom\":\"30\",\"left\":\"50\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"heading_visibility\":\"\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"rollIn\"},\"elements\":[{\"id\":\"d6d24d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"f901c8a\",\"elType\":\"widget\",\"settings\":{\"weight\":{\"unit\":\"px\",\"size\":5},\"color\":\"#6f1683\",\"width\":{\"unit\":\"%\",\"size\":37},\"align\":\"center\",\"_element_id\":\"contactme\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"88ebc38\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Me\",\"size\":\"xl\",\"align\":\"center\",\"title_color\":\"#6f1683\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":0.5},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a2ac12\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"8118b1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"ee6059e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Please use the contact form below, if you have any general questions or requests about my services.\\n\\nI will try my best to respond back to you within 24 hours.\",\"size\":\"small\",\"header_size\":\"h3\",\"align\":\"left\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1ee4d00\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\"},\"elements\":[{\"id\":\"5da6f5d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact me, by e-mail or by calling:\",\"size\":\"medium\",\"align\":\"center\",\"title_color\":\"#000000\",\"_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"71df537\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"a695b1e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"1d4a073\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"\",\"form_id\":\"164\"}},\"elements\":[],\"widgetType\":\"wp-widget-wpforms-widget\"}],\"isInner\":true},{\"id\":\"7343062\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"3b2409b\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-phone\",\"shape\":\"square\",\"title_text\":\"Call Me!\",\"description_text\":\"941.447.1258\",\"link\":{\"url\":\"tel:9414471258\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"content_vertical_alignment\":\"middle\",\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":29},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":-2.5},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\",\"animation_duration\":\"slow\",\"text_align\":\"left\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"fd39112\",\"elType\":\"widget\",\"settings\":{\"view\":\"stacked\",\"icon\":\"fa fa-envelope-o\",\"shape\":\"square\",\"title_text\":\"E-Mail Me!\",\"description_text\":\"info@moto-noto.com\",\"link\":{\"url\":\"mailto:info@moto-noto.com\",\"is_external\":\"\",\"nofollow\":\"\"},\"position\":\"left\",\"primary_color\":\"#6f1683\",\"secondary_color\":\"#ffffff\",\"icon_padding\":{\"unit\":\"px\",\"size\":16},\"border_radius\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"title_typography_typography\":\"custom\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":30},\"description_color\":\"#6f1683\",\"description_typography_typography\":\"custom\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":24},\"description_typography_font_weight\":\"600\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.1},\"_padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"title_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4231b3c1\",\"elType\":\"section\",\"settings\":{\"section_layout\":\"\",\"content_width\":{\"unit\":\"px\",\"size\":1140},\"section_background\":\"\",\"background_overlay_title\":\"\",\"section_border\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"_section_responsive\":\"\",\"responsive_description\":\"\",\"heading_visibility\":\"\"},\"elements\":[{\"id\":\"6ccff994\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"section_style\":\"\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"section_typo\":\"\",\"section_advanced\":\"\",\"section_responsive\":\"\",\"screen_xs\":\"default\",\"screen_xs_width\":\"100\"},\"elements\":[{\"id\":\"6b646f23\",\"elType\":\"widget\",\"settings\":{\"section_editor\":\"\",\"editor\":\"<p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>Copyright \\u00a9 2018 by: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Negron Multi-Services, llc<\\/a><\\/strong><\\/p><p class=\\\"\\\" style=\\\"text-align: center; font-size: 14px;\\\"><strong>By: \\u00a0<a href=\\\"http:\\/\\/www.negronmultiservices.com\\\">Rob Negron<\\/a><\\/strong><\\/p>\",\"section_style\":\"\",\"align\":\"center\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"_section_style\":\"\",\"_section_background\":\"\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"inset\":\"\",\"color\":\"rgba(0,0,0,0.5)\"},\"_section_responsive\":\"\",\"responsive_description\":\"\",\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\"},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(993,13,'_elementor_css','a:3:{s:4:\"time\";i:1521555651;s:5:\"fonts\";a:0:{}s:6:\"status\";s:4:\"file\";}');
/*!40000 ALTER TABLE `wpct_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpct_posts`
--

DROP TABLE IF EXISTS `wpct_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_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=259 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_posts`
--

LOCK TABLES `wpct_posts` WRITE;
/*!40000 ALTER TABLE `wpct_posts` DISABLE KEYS */;
INSERT INTO `wpct_posts` VALUES (1,1,'2018-03-15 01:21:16','2018-03-15 01:21:16','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2018-03-15 01:21:16','2018-03-15 01:21:16','',0,'http://moto-noto.com/?p=1',0,'post','',1),(2,1,'2018-03-15 01:21:16','2018-03-15 01:21:16','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:\n\n<blockquote>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.)</blockquote>\n\n...or something like this:\n\n<blockquote>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.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://moto-noto.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','publish','closed','open','','sample-page','','','2018-03-15 01:21:16','2018-03-15 01:21:16','',0,'http://moto-noto.com/?page_id=2',0,'page','',0),(13,1,'2018-03-15 02:47:11','2018-03-15 02:47:11','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3><p>(Sarasota, Manatee, and western DeSoto counties and by appointment)</p>		\n			<h2><a href=\"#testimonialsheader\">TESTIMONIALS</a></h2>		\n			<h2><a href=\"#contactme\">CONTACT ME</a></h2>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to: refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:9414471258\">\n                </a>\n                <h3>\n                    <a href=\"tel:9414471258\" >Call Me!</a>\n                </h3>\n                <p>941.447.1258</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','publish','closed','closed','','home','','','2018-03-20 14:20:40','2018-03-20 14:20:40','',0,'http://moto-noto.com/home/',0,'page','',0),(15,1,'2018-03-15 20:46:17','2018-03-15 20:46:17','','laptop-3196481_1920','','inherit','open','closed','','laptop-3196481_1920','','','2018-03-15 20:46:17','2018-03-15 20:46:17','',0,'http://moto-noto.com/wp-content/uploads/2018/03/laptop-3196481_1920.jpg',0,'attachment','image/jpeg',0),(19,1,'2018-03-16 16:45:27','2018-03-16 16:45:27','','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 16:45:27','2018-03-16 16:45:27','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(22,1,'2018-03-16 17:05:42','2018-03-16 17:05:42','','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 17:05:42','2018-03-16 17:05:42','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(26,1,'2018-03-16 17:53:40','2018-03-16 17:53:40','','Home','','publish','closed','closed','','home','','','2018-03-16 17:53:40','2018-03-16 17:53:40','',0,'http://moto-noto.com/2018/03/16/home/',1,'nav_menu_item','',0),(27,1,'2018-03-16 17:53:40','2018-03-16 17:53:40',' ','','','publish','closed','closed','','27','','','2018-03-16 17:53:40','2018-03-16 17:53:40','',0,'http://moto-noto.com/2018/03/16/27/',2,'nav_menu_item','',0),(30,1,'2018-03-16 18:11:41','2018-03-16 18:11:41','','25388715424_65480dbf18_k.jpg','','inherit','open','closed','','25388715424_65480dbf18_k-jpg','','','2018-03-16 18:11:41','2018-03-16 18:11:41','',0,'http://moto-noto.com/wp-content/uploads/2018/03/25388715424_65480dbf18_k.jpg',0,'attachment','image/jpeg',0),(31,1,'2018-03-16 18:11:42','2018-03-16 18:11:42','','zusman.png','','inherit','open','closed','','zusman-png','','','2018-03-16 18:11:42','2018-03-16 18:11:42','',0,'http://moto-noto.com/wp-content/uploads/2018/03/zusman.png',0,'attachment','image/png',0),(32,1,'2018-03-16 18:11:43','2018-03-16 18:11:43','','zing.png','','inherit','open','closed','','zing-png','','','2018-03-16 18:11:43','2018-03-16 18:11:43','',0,'http://moto-noto.com/wp-content/uploads/2018/03/zing.png',0,'attachment','image/png',0),(33,1,'2018-03-16 18:11:43','2018-03-16 18:11:43','','madrin.png','','inherit','open','closed','','madrin-png','','','2018-03-16 18:11:43','2018-03-16 18:11:43','',0,'http://moto-noto.com/wp-content/uploads/2018/03/madrin.png',0,'attachment','image/png',0),(34,1,'2018-03-16 18:11:43','2018-03-16 18:11:43','','armond-1.png','','inherit','open','closed','','armond-1-png','','','2018-03-16 18:11:43','2018-03-16 18:11:43','',0,'http://moto-noto.com/wp-content/uploads/2018/03/armond-1.png',0,'attachment','image/png',0),(35,1,'2018-03-16 18:11:43','2018-03-16 18:11:43','','x.venox_.png','','inherit','open','closed','','x-venox_-png','','','2018-03-16 18:11:43','2018-03-16 18:11:43','',0,'http://moto-noto.com/wp-content/uploads/2018/03/x.venox_.png',0,'attachment','image/png',0),(36,1,'2018-03-16 18:11:43','2018-03-16 18:11:43','','geo.png','','inherit','open','closed','','geo-png','','','2018-03-16 18:11:43','2018-03-16 18:11:43','',0,'http://moto-noto.com/wp-content/uploads/2018/03/geo.png',0,'attachment','image/png',0),(37,1,'2018-03-16 18:11:43','2018-03-16 18:11:43','','fifthflour.png','','inherit','open','closed','','fifthflour-png','','','2018-03-16 18:11:43','2018-03-16 18:11:43','',0,'http://moto-noto.com/wp-content/uploads/2018/03/fifthflour.png',0,'attachment','image/png',0),(38,1,'2018-03-16 18:11:43','2018-03-16 18:11:43','','larozse.png','','inherit','open','closed','','larozse-png','','','2018-03-16 18:11:43','2018-03-16 18:11:43','',0,'http://moto-noto.com/wp-content/uploads/2018/03/larozse.png',0,'attachment','image/png',0),(39,1,'2018-03-16 18:11:43','2018-03-16 18:11:43','','bolier.png','','inherit','open','closed','','bolier-png','','','2018-03-16 18:11:43','2018-03-16 18:11:43','',0,'http://moto-noto.com/wp-content/uploads/2018/03/bolier.png',0,'attachment','image/png',0),(40,1,'2018-03-16 18:11:43','2018-03-16 18:11:43','','mapmaster.png','','inherit','open','closed','','mapmaster-png','','','2018-03-16 18:11:43','2018-03-16 18:11:43','',0,'http://moto-noto.com/wp-content/uploads/2018/03/mapmaster.png',0,'attachment','image/png',0),(41,1,'2018-03-16 18:11:43','2018-03-16 18:11:43','','darkside.png','','inherit','open','closed','','darkside-png','','','2018-03-16 18:11:43','2018-03-16 18:11:43','',0,'http://moto-noto.com/wp-content/uploads/2018/03/darkside.png',0,'attachment','image/png',0),(42,1,'2018-03-16 18:11:43','2018-03-16 18:11:43','','digit.png','','inherit','open','closed','','digit-png','','','2018-03-16 18:11:43','2018-03-16 18:11:43','',0,'http://moto-noto.com/wp-content/uploads/2018/03/digit.png',0,'attachment','image/png',0),(43,1,'2018-03-16 18:11:43','2018-03-16 18:11:43','','col.png','','inherit','open','closed','','col-png','','','2018-03-16 18:11:43','2018-03-16 18:11:43','',0,'http://moto-noto.com/wp-content/uploads/2018/03/col.png',0,'attachment','image/png',0),(44,1,'2018-03-16 18:11:44','2018-03-16 18:11:44','','25497478040_140ce47f31_k.jpg','','inherit','open','closed','','25497478040_140ce47f31_k-jpg','','','2018-03-16 18:11:44','2018-03-16 18:11:44','',0,'http://moto-noto.com/wp-content/uploads/2018/03/25497478040_140ce47f31_k.jpg',0,'attachment','image/jpeg',0),(45,1,'2018-03-16 18:11:44','2018-03-16 18:11:44','','1470399607_Illustration.png','','inherit','open','closed','','1470399607_illustration-png','','','2018-03-16 18:11:44','2018-03-16 18:11:44','',0,'http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png',0,'attachment','image/png',0),(46,1,'2018-03-16 18:11:45','2018-03-16 18:11:45','','1470399614_Social_Media.png','','inherit','open','closed','','1470399614_social_media-png','','','2018-03-16 18:11:45','2018-03-16 18:11:45','',0,'http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png',0,'attachment','image/png',0),(47,1,'2018-03-16 18:11:45','2018-03-16 18:11:45','','1470399594_Web_Design.png','','inherit','open','closed','','1470399594_web_design-png','','','2018-03-16 18:11:45','2018-03-16 18:11:45','',0,'http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png',0,'attachment','image/png',0),(48,1,'2018-03-16 18:11:46','2018-03-16 18:11:46','','1470399662_Marketing.png','','inherit','open','closed','','1470399662_marketing-png','','','2018-03-16 18:11:46','2018-03-16 18:11:46','',0,'http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png',0,'attachment','image/png',0),(49,1,'2018-03-16 18:11:46','2018-03-16 18:11:46','','1470399671_SEO.png','','inherit','open','closed','','1470399671_seo-png','','','2018-03-16 18:11:46','2018-03-16 18:11:46','',0,'http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png',0,'attachment','image/png',0),(50,1,'2018-03-16 18:11:46','2018-03-16 18:11:46','','1470399715_E-Commerce.png','','inherit','open','closed','','1470399715_e-commerce-png','','','2018-03-16 18:11:46','2018-03-16 18:11:46','',0,'http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png',0,'attachment','image/png',0),(51,1,'2018-03-16 18:11:46','2018-03-16 18:11:46','','1470399674_App_Development.png','','inherit','open','closed','','1470399674_app_development-png','','','2018-03-16 18:11:46','2018-03-16 18:11:46','',0,'http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png',0,'attachment','image/png',0),(52,1,'2018-03-16 18:11:47','2018-03-16 18:11:47','','1470399667_Newsletter.png','','inherit','open','closed','','1470399667_newsletter-png','','','2018-03-16 18:11:47','2018-03-16 18:11:47','',0,'http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png',0,'attachment','image/png',0),(53,1,'2018-03-16 18:11:47','2018-03-16 18:11:47','','1470399656_Branding.png','','inherit','open','closed','','1470399656_branding-png','','','2018-03-16 18:11:47','2018-03-16 18:11:47','',0,'http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png',0,'attachment','image/png',0),(54,1,'2018-03-16 18:15:30','2018-03-16 18:15:30','<h2>What set me apart</h2>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/zusman-nnbjexoxuuzzi26pbb9cazbkw5x23uyri7adh7pj30.png\" alt=\"zusman.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/zing-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"zing.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/madrin-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"madrin.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/armond-1-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"armond-1.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/x.venox_-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"x.venox_.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/geo-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"geo.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/fifthflour-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"fifthflour.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/larozse-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"larozse.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/bolier-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"bolier.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/mapmaster-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"mapmaster.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/darkside-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"darkside.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/digit-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"digit.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/col-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"col.png\" /></figure>			\n							\"What really turned me over was the ability to understand how everything works without any prior knowledge.\"\n							<img src=\"http://moto-noto.com/wp-content/uploads/2018/03/25497478040_140ce47f31_k.jpg\" alt=\"25497478040_140ce47f31_k.jpg\" />\n													John Doe\n													Designer\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 18:15:30','2018-03-16 18:15:30','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(55,1,'2018-03-16 18:18:28','2018-03-16 18:18:28','','123notary','','inherit','open','closed','','123notary','','','2018-03-16 18:18:28','2018-03-16 18:18:28','',0,'http://moto-noto.com/wp-content/uploads/2018/03/123notary.png',0,'attachment','image/png',0),(56,1,'2018-03-16 18:18:32','2018-03-16 18:18:32','','American Society of Notaries','','inherit','open','closed','','american-society-of-notaries','','','2018-03-16 18:18:32','2018-03-16 18:18:32','',0,'http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries.jpg',0,'attachment','image/jpeg',0),(57,1,'2018-03-16 18:18:34','2018-03-16 18:18:34','American Society of Notaries Member','American Society of Notaries','','inherit','open','closed','','american-society-of-notaries-2','','','2018-03-16 18:59:45','2018-03-16 18:59:45','',0,'http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries.png',0,'attachment','image/png',0),(58,1,'2018-03-16 18:18:36','2018-03-16 18:18:36','','b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080','','inherit','open','closed','','b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080','','','2018-03-16 18:18:36','2018-03-16 18:18:36','',0,'http://moto-noto.com/wp-content/uploads/2018/03/b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080.png',0,'attachment','image/png',0),(59,1,'2018-03-16 18:18:39','2018-03-16 18:18:39','','bobsled-1866318_1280','','inherit','open','closed','','bobsled-1866318_1280','','','2018-03-16 18:18:39','2018-03-16 18:18:39','',0,'http://moto-noto.com/wp-content/uploads/2018/03/bobsled-1866318_1280.png',0,'attachment','image/png',0),(60,1,'2018-03-16 18:18:44','2018-03-16 18:18:44','','Certified','','inherit','open','closed','','certified','','','2018-03-16 18:18:44','2018-03-16 18:18:44','',0,'http://moto-noto.com/wp-content/uploads/2018/03/Certified.png',0,'attachment','image/png',0),(61,1,'2018-03-16 18:18:53','2018-03-16 18:18:53','','The Closing Exchange Logo','Transforming the signing experience. (PRNewsfoto/The Closing Exchange)','inherit','open','closed','','the-closing-exchange-logo','','','2018-03-16 18:18:53','2018-03-16 18:18:53','',0,'http://moto-noto.com/wp-content/uploads/2018/03/closingExchange.jpg',0,'attachment','image/jpeg',0),(62,1,'2018-03-16 18:19:00','2018-03-16 18:19:00','','cusponsorlogo','','inherit','open','closed','','cusponsorlogo','','','2018-03-16 18:19:00','2018-03-16 18:19:00','',0,'http://moto-noto.com/wp-content/uploads/2018/03/cusponsorlogo.png',0,'attachment','image/png',0),(63,1,'2018-03-16 18:19:08','2018-03-16 18:19:08','','Fidelity Logo for Home Pages','','inherit','open','closed','','fidelity-logo-for-home-pages','','','2018-03-16 18:19:08','2018-03-16 18:19:08','',0,'http://moto-noto.com/wp-content/uploads/2018/03/Fidelity-Logo-for-Home-Pages.jpg',0,'attachment','image/jpeg',0),(64,1,'2018-03-16 18:19:11','2018-03-16 18:19:11','','fidelitySeal','','inherit','open','closed','','fidelityseal','','','2018-03-16 18:19:11','2018-03-16 18:19:11','',0,'http://moto-noto.com/wp-content/uploads/2018/03/fidelitySeal.png',0,'attachment','image/png',0),(65,1,'2018-03-16 18:19:13','2018-03-16 18:19:13','','game-1300503_1280','','inherit','open','closed','','game-1300503_1280','','','2018-03-16 18:19:13','2018-03-16 18:19:13','',0,'http://moto-noto.com/wp-content/uploads/2018/03/game-1300503_1280.png',0,'attachment','image/png',0),(66,1,'2018-03-16 18:19:17','2018-03-16 18:19:17','','Moto-Noto-Icon','','inherit','open','closed','','moto-noto-icon','','','2018-03-16 18:19:17','2018-03-16 18:19:17','',0,'http://moto-noto.com/wp-content/uploads/2018/03/Moto-Noto-Icon.png',0,'attachment','image/png',0),(67,1,'2018-03-16 18:19:21','2018-03-16 18:19:21','','moto-notoLOGO','','inherit','open','closed','','moto-notologo','','','2018-03-16 18:19:21','2018-03-16 18:19:21','',0,'http://moto-noto.com/wp-content/uploads/2018/03/moto-notoLOGO.jpg',0,'attachment','image/jpeg',0),(68,1,'2018-03-16 18:19:29','2018-03-16 18:19:29','','moto-notoLOGO','','inherit','open','closed','','moto-notologo-2','','','2018-03-16 18:19:29','2018-03-16 18:19:29','',0,'http://moto-noto.com/wp-content/uploads/2018/03/moto-notoLOGO.png',0,'attachment','image/png',0),(69,1,'2018-03-16 18:19:33','2018-03-16 18:19:33','','moto-notoLOGO2','','inherit','open','closed','','moto-notologo2','','','2018-03-16 18:19:33','2018-03-16 18:19:33','',0,'http://moto-noto.com/wp-content/uploads/2018/03/moto-notoLOGO2.png',0,'attachment','image/png',0),(70,1,'2018-03-16 18:19:39','2018-03-16 18:19:39','','motorbike-2029941_1280','','inherit','open','closed','','motorbike-2029941_1280','','','2018-03-16 18:19:39','2018-03-16 18:19:39','',0,'http://moto-noto.com/wp-content/uploads/2018/03/motorbike-2029941_1280.png',0,'attachment','image/png',0),(71,1,'2018-03-16 18:19:42','2018-03-16 18:19:42','','national_notary_association','','inherit','open','closed','','national_notary_association','','','2018-03-16 18:19:42','2018-03-16 18:19:42','',0,'http://moto-noto.com/wp-content/uploads/2018/03/national_notary_association.pdf',0,'attachment','application/pdf',0),(72,1,'2018-03-16 18:19:44','2018-03-16 18:19:44','NNA Background Screened','nna_logo2','','inherit','open','closed','','nna_logo2','','','2018-03-16 18:59:18','2018-03-16 18:59:18','',0,'http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2.png',0,'attachment','image/png',0),(73,1,'2018-03-16 18:19:47','2018-03-16 18:19:47','','nna_member_badge_download_png','','inherit','open','closed','','nna_member_badge_download_png','','','2018-03-16 18:19:47','2018-03-16 18:19:47','',0,'http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge_download_png.png',0,'attachment','image/png',0),(74,1,'2018-03-16 18:19:49','2018-03-16 18:19:49','NNA Member','nna_member_badge','','inherit','open','closed','','nna_member_badge','','','2018-03-16 18:58:56','2018-03-16 18:58:56','',0,'http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge.png',0,'attachment','image/png',0),(75,1,'2018-03-16 18:19:51','2018-03-16 18:19:51','','notary_bonded_lg','','inherit','open','closed','','notary_bonded_lg','','','2018-03-16 18:19:51','2018-03-16 18:19:51','',0,'http://moto-noto.com/wp-content/uploads/2018/03/notary_bonded_lg.jpg',0,'attachment','image/jpeg',0),(76,1,'2018-03-16 18:19:54','2018-03-16 18:19:54','','notaryBonded','','inherit','open','closed','','notarybonded','','','2018-03-16 18:19:54','2018-03-16 18:19:54','',0,'http://moto-noto.com/wp-content/uploads/2018/03/notaryBonded.jpg',0,'attachment','image/jpeg',0),(77,1,'2018-03-16 18:19:57','2018-03-16 18:19:57','','paralegal-button','','inherit','open','closed','','paralegal-button','','','2018-03-16 18:19:57','2018-03-16 18:19:57','',0,'http://moto-noto.com/wp-content/uploads/2018/03/paralegal-button.png',0,'attachment','image/png',0),(78,1,'2018-03-16 18:19:59','2018-03-16 18:19:59','','scales-2579312_960_720','','inherit','open','closed','','scales-2579312_960_720','','','2018-03-16 18:19:59','2018-03-16 18:19:59','',0,'http://moto-noto.com/wp-content/uploads/2018/03/scales-2579312_960_720.jpg',0,'attachment','image/jpeg',0),(79,1,'2018-03-16 18:20:01','2018-03-16 18:20:01','','scales-of-justice','','inherit','open','closed','','scales-of-justice','','','2018-03-16 18:20:01','2018-03-16 18:20:01','',0,'http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png',0,'attachment','image/png',0),(80,1,'2018-03-16 18:20:04','2018-03-16 18:20:04','','University_of_Colorado_at_Boulder_-_Wordmark','','inherit','open','closed','','university_of_colorado_at_boulder_-_wordmark','','','2018-03-16 18:20:04','2018-03-16 18:20:04','',0,'http://moto-noto.com/wp-content/uploads/2018/03/University_of_Colorado_at_Boulder_-_Wordmark.png',0,'attachment','image/png',0),(81,1,'2018-03-16 18:20:10','2018-03-16 18:20:10','','University-of-Colorado-Boulder-Seal1','','inherit','open','closed','','university-of-colorado-boulder-seal1','','','2018-03-16 18:20:10','2018-03-16 18:20:10','',0,'http://moto-noto.com/wp-content/uploads/2018/03/University-of-Colorado-Boulder-Seal1.jpg',0,'attachment','image/jpeg',0),(82,1,'2018-03-16 18:20:14','2018-03-16 18:20:14','','UniversityOfColoradoSeal','','inherit','open','closed','','universityofcoloradoseal','','','2018-03-16 18:20:14','2018-03-16 18:20:14','',0,'http://moto-noto.com/wp-content/uploads/2018/03/UniversityOfColoradoSeal.png',0,'attachment','image/png',0),(83,1,'2018-03-16 18:20:17','2018-03-16 18:20:17','','VIPlogo','','inherit','open','closed','','viplogo','','','2018-03-16 18:20:17','2018-03-16 18:20:17','',0,'http://moto-noto.com/wp-content/uploads/2018/03/VIPlogo.png',0,'attachment','image/png',0),(99,1,'2018-03-16 19:00:53','2018-03-16 19:00:53','<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries.png\" alt=\"American Society of Notaries\" /></figure>			\n							\"What really turned me over was the ability to understand how everything works without any prior knowledge.\"\n							<img src=\"http://moto-noto.com/wp-content/uploads/2018/03/25497478040_140ce47f31_k.jpg\" alt=\"25497478040_140ce47f31_k.jpg\" />\n													John Doe\n													Designer\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 19:00:53','2018-03-16 19:00:53','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(84,1,'2018-03-16 18:24:00','2018-03-16 18:24:00','<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/zusman-nnbjexoxuuzzi26pbb9cazbkw5x23uyri7adh7pj30.png\" alt=\"zusman.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/zing-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"zing.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/madrin-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"madrin.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/armond-1-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"armond-1.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/x.venox_-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"x.venox_.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/geo-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"geo.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/fifthflour-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"fifthflour.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/larozse-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"larozse.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/bolier-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"bolier.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/mapmaster-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"mapmaster.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/darkside-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"darkside.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/digit-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"digit.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/col-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"col.png\" /></figure>			\n							\"What really turned me over was the ability to understand how everything works without any prior knowledge.\"\n							<img src=\"http://moto-noto.com/wp-content/uploads/2018/03/25497478040_140ce47f31_k.jpg\" alt=\"25497478040_140ce47f31_k.jpg\" />\n													John Doe\n													Designer\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 18:24:00','2018-03-16 18:24:00','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(85,1,'2018-03-16 18:24:51','2018-03-16 18:24:51','<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/zusman-nnbjexoxuuzzi26pbb9cazbkw5x23uyri7adh7pj30.png\" alt=\"zusman.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/zing-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"zing.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/madrin-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"madrin.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/armond-1-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"armond-1.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/x.venox_-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"x.venox_.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/geo-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"geo.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/fifthflour-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"fifthflour.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/larozse-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"larozse.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/bolier-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"bolier.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/mapmaster-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"mapmaster.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/darkside-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"darkside.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/digit-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"digit.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/col-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"col.png\" /></figure>			\n							\"What really turned me over was the ability to understand how everything works without any prior knowledge.\"\n							<img src=\"http://moto-noto.com/wp-content/uploads/2018/03/25497478040_140ce47f31_k.jpg\" alt=\"25497478040_140ce47f31_k.jpg\" />\n													John Doe\n													Designer\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 18:24:51','2018-03-16 18:24:51','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(86,1,'2018-03-16 18:25:49','2018-03-16 18:25:49','<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/zusman-nnbjexoxuuzzi26pbb9cazbkw5x23uyri7adh7pj30.png\" alt=\"zusman.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/zing-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"zing.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/madrin-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"madrin.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/armond-1-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"armond-1.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/x.venox_-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"x.venox_.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/geo-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"geo.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/fifthflour-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"fifthflour.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/larozse-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"larozse.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/bolier-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"bolier.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/mapmaster-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"mapmaster.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/darkside-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"darkside.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/digit-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"digit.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/col-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"col.png\" /></figure>			\n							\"What really turned me over was the ability to understand how everything works without any prior knowledge.\"\n							<img src=\"http://moto-noto.com/wp-content/uploads/2018/03/25497478040_140ce47f31_k.jpg\" alt=\"25497478040_140ce47f31_k.jpg\" />\n													John Doe\n													Designer\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 18:25:49','2018-03-16 18:25:49','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(87,1,'2018-03-16 18:27:22','2018-03-16 18:27:22','<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/zusman-nnbjexoxuuzzi26pbb9cazbkw5x23uyri7adh7pj30.png\" alt=\"zusman.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/zing-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"zing.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/madrin-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"madrin.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/armond-1-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"armond-1.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/x.venox_-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"x.venox_.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/geo-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"geo.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/fifthflour-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"fifthflour.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/larozse-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"larozse.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/bolier-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"bolier.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/mapmaster-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"mapmaster.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/darkside-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"darkside.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/digit-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"digit.png\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/col-nnbjeyms1p19to5c5tnyvh31hjsfbk2hubxuyho4ws.png\" alt=\"col.png\" /></figure>			\n							\"What really turned me over was the ability to understand how everything works without any prior knowledge.\"\n							<img src=\"http://moto-noto.com/wp-content/uploads/2018/03/25497478040_140ce47f31_k.jpg\" alt=\"25497478040_140ce47f31_k.jpg\" />\n													John Doe\n													Designer\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 18:27:22','2018-03-16 18:27:22','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(88,1,'2018-03-16 18:39:05','2018-03-16 18:39:05','123notary','123notary','','inherit','open','closed','','123notary-2','','','2018-03-16 18:39:42','2018-03-16 18:39:42','',0,'http://moto-noto.com/wp-content/uploads/2018/03/123notary-1.png',0,'attachment','image/png',0),(89,1,'2018-03-16 18:39:09','2018-03-16 18:39:09','snapdocs','b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080','','inherit','open','closed','','b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-2','','','2018-03-16 18:39:57','2018-03-16 18:39:57','',0,'http://moto-noto.com/wp-content/uploads/2018/03/b4dd4240-aa36-4b74-b2ff-5fd559fbf061-1512518607080-1.png',0,'attachment','image/png',0),(90,1,'2018-03-16 18:39:11','2018-03-16 18:39:11','','The Closing Exchange Logo','','inherit','open','closed','','the-closing-exchange-logo-2','','','2018-03-16 18:40:25','2018-03-16 18:40:25','',0,'http://moto-noto.com/wp-content/uploads/2018/03/closingExchange-1.jpg',0,'attachment','image/jpeg',0),(93,1,'2018-03-16 18:53:29','2018-03-16 18:53:29','The Closing Exchange','closingExchangeAlhpa','','inherit','open','closed','','closingexchangealhpa','','','2018-03-18 03:20:01','2018-03-18 03:20:01','',0,'http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa.png',0,'attachment','image/png',0),(106,1,'2018-03-16 19:30:20','2018-03-16 19:30:20','<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBonded.png\" alt=\"notaryBonded\" title=\"notaryBonded\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 19:30:20','2018-03-16 19:30:20','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(100,1,'2018-03-16 19:04:56','2018-03-16 19:04:56','<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n							\"What really turned me over was the ability to understand how everything works without any prior knowledge.\"\n							<img src=\"http://moto-noto.com/wp-content/uploads/2018/03/25497478040_140ce47f31_k.jpg\" alt=\"25497478040_140ce47f31_k.jpg\" />\n													John Doe\n													Designer\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 19:04:56','2018-03-16 19:04:56','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(94,1,'2018-03-16 18:53:34','2018-03-16 18:53:34','snapdocs','snapdocsLogo','','inherit','open','closed','','snapdocslogo','','','2018-03-16 18:55:22','2018-03-16 18:55:22','',0,'http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo.png',0,'attachment','image/png',0),(101,1,'2018-03-16 19:06:13','2018-03-16 19:06:13','<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n							\"What really turned me over was the ability to understand how everything works without any prior knowledge.\"\n							<img src=\"http://moto-noto.com/wp-content/uploads/2018/03/25497478040_140ce47f31_k.jpg\" alt=\"25497478040_140ce47f31_k.jpg\" />\n													John Doe\n													Designer\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 19:06:13','2018-03-16 19:06:13','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(102,1,'2018-03-16 19:07:27','2018-03-16 19:07:27','<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n							\"What really turned me over was the ability to understand how everything works without any prior knowledge.\"\n							<img src=\"http://moto-noto.com/wp-content/uploads/2018/03/25497478040_140ce47f31_k.jpg\" alt=\"25497478040_140ce47f31_k.jpg\" />\n													John Doe\n													Designer\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 19:07:27','2018-03-16 19:07:27','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(103,1,'2018-03-16 19:10:17','2018-03-16 19:10:17','<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n							\"What really turned me over was the ability to understand how everything works without any prior knowledge.\"\n							<img src=\"http://moto-noto.com/wp-content/uploads/2018/03/25497478040_140ce47f31_k.jpg\" alt=\"25497478040_140ce47f31_k.jpg\" />\n													John Doe\n													Designer\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 19:10:17','2018-03-16 19:10:17','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(105,1,'2018-03-16 19:15:37','2018-03-16 19:15:37','','notaryBonded','','inherit','open','closed','','notarybonded-2','','','2018-03-16 19:53:22','2018-03-16 19:53:22','',0,'http://moto-noto.com/wp-content/uploads/2018/03/notaryBonded.png',0,'attachment','image/png',0),(131,1,'2018-03-18 03:38:41','2018-03-18 03:38:41','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 03:38:41','2018-03-18 03:38:41','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(107,1,'2018-03-16 19:34:09','2018-03-16 19:34:09','<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBonded.png\" alt=\"notaryBonded\" title=\"notaryBonded\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBonded.png\" alt=\"notaryBonded\" title=\"notaryBonded\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBonded.png\" alt=\"notaryBonded\" title=\"notaryBonded\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBonded.png\" alt=\"notaryBonded\" title=\"notaryBonded\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 19:34:09','2018-03-16 19:34:09','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(108,1,'2018-03-16 19:35:12','2018-03-16 19:35:12','<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBonded.png\" alt=\"notaryBonded\" title=\"notaryBonded\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogo.png\" alt=\"VIPlogo\" title=\"VIPlogo\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/Certified.png\" alt=\"Certified\" title=\"Certified\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 19:35:12','2018-03-16 19:35:12','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(109,1,'2018-03-16 19:50:37','2018-03-16 19:50:37','<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBonded.png\" alt=\"notaryBonded\" title=\"notaryBonded\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogo.png\" alt=\"VIPlogo\" title=\"VIPlogo\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/Certified.png\" alt=\"Certified\" title=\"Certified\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 19:50:37','2018-03-16 19:50:37','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(112,1,'2018-03-16 19:57:43','2018-03-16 19:57:43','<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogo.png\" alt=\"VIPlogo\" title=\"VIPlogo\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/Certified.png\" alt=\"Certified\" title=\"Certified\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 19:57:43','2018-03-16 19:57:43','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(111,1,'2018-03-16 19:57:17','2018-03-16 19:57:17','Bonded Notary','notaryBondedSmall','','inherit','open','closed','','notarybondedsmall','','','2018-03-16 19:57:34','2018-03-16 19:57:34','',0,'http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall.png',0,'attachment','image/png',0),(113,1,'2018-03-16 19:59:11','2018-03-16 19:59:11','','CertifiedSmall','','inherit','open','closed','','certifiedsmall','','','2018-03-16 19:59:27','2018-03-16 19:59:27','',0,'http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall.png',0,'attachment','image/png',0),(119,1,'2018-03-16 20:05:55','2018-03-16 20:05:55','<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 20:05:55','2018-03-16 20:05:55','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(115,1,'2018-03-16 20:00:42','2018-03-16 20:00:42','','VIPlogoSmall','','inherit','open','closed','','viplogosmall','','','2018-03-16 20:01:02','2018-03-16 20:01:02','',0,'http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png',0,'attachment','image/png',0),(117,1,'2018-03-16 20:05:01','2018-03-16 20:05:01','Bonded Notary','notaryBondedSmall','','inherit','open','closed','','notarybondedsmall-2','','','2018-03-16 20:05:15','2018-03-16 20:05:15','',0,'http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png',0,'attachment','image/png',0),(118,1,'2018-03-16 20:05:37','2018-03-16 20:05:37','Certified','CertifiedSmall','','inherit','open','closed','','certifiedsmall-2','','','2018-03-16 20:05:51','2018-03-16 20:05:51','',0,'http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png',0,'attachment','image/png',0),(120,1,'2018-03-16 20:07:29','2018-03-16 20:07:29','<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 20:07:29','2018-03-16 20:07:29','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(121,1,'2018-03-16 20:10:04','2018-03-16 20:10:04','<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 20:10:04','2018-03-16 20:10:04','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(122,1,'2018-03-16 20:24:53','2018-03-16 20:24:53','<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 20:24:53','2018-03-16 20:24:53','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(130,1,'2018-03-18 03:20:15','2018-03-18 03:20:15','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 03:20:15','2018-03-18 03:20:15','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(124,1,'2018-03-16 20:33:09','2018-03-16 20:33:09','<h2>MOTO-NOTO</h2>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 20:33:09','2018-03-16 20:33:09','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(125,1,'2018-03-16 20:34:14','2018-03-16 20:34:14','<h2>MOTO-NOTO</h2>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-16 20:34:14','2018-03-16 20:34:14','',13,'http://moto-noto.com/2018/03/16/13-revision-v1/',0,'revision','',0),(126,1,'2018-03-18 03:12:05','2018-03-18 03:12:05','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 03:12:05','2018-03-18 03:12:05','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(127,1,'2018-03-18 03:12:19','2018-03-18 03:12:19','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>Experience design at scale\n</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399607_Illustration-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399614_Social_Media-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>Understand your user experience</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 03:12:19','2018-03-18 03:12:19','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(133,1,'2018-03-18 03:42:50','2018-03-18 03:42:50','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n												Submit Your Own Testimony					\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 03:42:50','2018-03-18 03:42:50','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(134,1,'2018-03-18 03:49:30','2018-03-18 03:49:30','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n												Submit Your Own Testimony					\n					<p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 03:49:30','2018-03-18 03:49:30','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(141,1,'2018-03-18 04:26:08','2018-03-18 04:26:08','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 04:26:08','2018-03-18 04:26:08','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(135,1,'2018-03-18 03:54:04','2018-03-18 03:54:04','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 03:54:04','2018-03-18 03:54:04','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(136,1,'2018-03-18 04:15:30','2018-03-18 04:15:30','Thank you for providing me with exceptional service the day of my closing. You really went above and beyond. I don’t know of any notary that would get documents notarized in such a short time frame. You showed up at the office in less than 40 minutes. Without you, I don’t think I would have been able to close the deal in a timely fashion. I will recommend you to my family, friends, and colleagues.','Timely Service','','publish','closed','closed','','timely-service','','','2018-03-20 14:16:39','2018-03-20 14:16:39','',0,'http://moto-noto.com/?post_type=wpm-testimonial&#038;p=136',0,'wpm-testimonial','',0),(137,1,'2018-03-18 04:15:30','2018-03-18 04:15:30','Thank you for providing me with exceptional service the day of my closing. You really went above and beyond. I don’t know of any notary that would get documents notarized in such a short time frame. You showed up at the office in less then 40 minutes. Without you, I don’t think I would have been able to close the deal in a timely fashion. I will recommend you to my family, friends, and colleagues.','Timely Service','Without you, I don’t think I would have been able to close the deal in a timely fashion.','inherit','closed','closed','','136-revision-v1','','','2018-03-18 04:15:30','2018-03-18 04:15:30','',136,'http://moto-noto.com/2018/03/18/136-revision-v1/',0,'revision','',0),(139,1,'2018-03-18 04:20:23','2018-03-18 04:20:23','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h3>remain responsive across devices</h3>		\n		I am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.		\n			<p>Read More</p>		\n		<img width=\"512\" height=\"512\" src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png\" alt=\"\" srcset=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design.png 512w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-150x150.png 150w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-300x300.png 300w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-75x75.png 75w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-200x200.png 200w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-350x350.png 350w, http://moto-noto.com/wp-content/uploads/2018/03/1470399594_Web_Design-100x100.png 100w\" sizes=\"(max-width: 512px) 100vw, 512px\" />		\n			<h3>fall in love with our features\n</h3>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399662_Marketing.png\" alt=\"1470399662_Marketing.png\" title=\"1470399662_Marketing.png\"></figure><h3>Real time stats</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399671_SEO.png\" alt=\"1470399671_SEO.png\" title=\"1470399671_SEO.png\"></figure><h3>Multilingual & translatable</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399715_E-Commerce.png\" alt=\"1470399715_E-Commerce.png\" title=\"1470399715_E-Commerce.png\"></figure><h3>Less plugins needed</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399674_App_Development.png\" alt=\"1470399674_App_Development.png\" title=\"1470399674_App_Development.png\"></figure><h3>Amazingly responsive</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399667_Newsletter.png\" alt=\"1470399667_Newsletter.png\" title=\"1470399667_Newsletter.png\"></figure><h3>Community builder</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/1470399656_Branding.png\" alt=\"1470399656_Branding.png\" title=\"1470399656_Branding.png\"></figure><h3>Easy to use interface</h3><p>Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec mattis, pulvinar dapibus leo.</p>		\n			<h2>Make a beautiful website</h2>		\n			<p>It has never been easier to create pages and websites on WordPress</p>		\n			<a href=\"#\">\n						Click me\n					</a>\n		<p>Image Source: <a href=\"http://www.wocintechchat.com/\">WOCinTechChat</a>, <a href=\"https://www.iconfinder.com/iconsets/elpis\">Icon Finder</a></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 04:20:23','2018-03-18 04:20:23','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(142,1,'2018-03-18 04:33:25','2018-03-18 04:33:25','Thank you so much for the punctual and professional service you provided us during our re-fiancing closing. You were very knowledgable with all the documents and when there was an issue with the spelling of my wife’s name, you didn’t skip a beat and knew exactly what to do. We can’t thank you enough for the superior service and your polite nature. We will recommend you to everyone we know needs services like yours.','Extremely Knowledgable','','publish','closed','closed','','extremely-knowledgable','','','2018-03-18 04:33:25','2018-03-18 04:33:25','',0,'http://moto-noto.com/?post_type=wpm-testimonial&#038;p=142',0,'wpm-testimonial','',0),(143,0,'2018-03-18 04:30:21','2018-03-18 04:30:21','','NegronLogo.png','','inherit','open','closed','','negronlogo-png','','','2018-03-18 04:30:21','2018-03-18 04:30:21','',142,'http://moto-noto.com/wp-content/uploads/2018/03/NegronLogo.png',0,'attachment','image/png',0),(144,1,'2018-03-18 04:33:25','2018-03-18 04:33:25','Thank you so much for the punctual and professional service you provided us during our re-fiancing closing. You were very knowledgable with all the documents and when there was an issue with the spelling of my wife’s name, you didn’t skip a beat and knew exactly what to do. We can’t thank you enough for the superior service and your polite nature. We will recommend you to everyone we know needs services like yours.','Extremely Knowledgable','','inherit','closed','closed','','142-revision-v1','','','2018-03-18 04:33:25','2018-03-18 04:33:25','',142,'http://moto-noto.com/2018/03/18/142-revision-v1/',0,'revision','',0),(145,1,'2018-03-18 04:47:34','2018-03-18 04:47:34','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n		<p style=\"text-align: center; font-size: 12px;\"><strong>Copyright © 2018 by: &nbsp;<a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong>\n<strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;By: &nbsp;<a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 04:47:34','2018-03-18 04:47:34','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(146,1,'2018-03-18 04:48:35','2018-03-18 04:48:35','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n		<p style=\"text-align: center; font-size: 12px;\"><strong>Copyright © 2018 by: &nbsp;<a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong>\n<strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;By: &nbsp;<a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 04:48:35','2018-03-18 04:48:35','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(148,1,'2018-03-18 04:50:42','2018-03-18 04:50:42','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n		<p style=\"text-align: center; font-size: 12px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong><br /> <strong>            By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 04:50:42','2018-03-18 04:50:42','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(147,1,'2018-03-18 04:50:13','2018-03-18 04:50:13','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n		<p style=\"text-align: center; font-size: 12px;\"><strong>Copyright © 2018 by: &nbsp;<a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong>\n<strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;By: &nbsp;<a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 04:50:13','2018-03-18 04:50:13','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(149,1,'2018-03-18 04:53:06','2018-03-18 04:53:06','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n		<p style=\"text-align: center; font-size: 12px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong><br /> <strong>            By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 04:53:06','2018-03-18 04:53:06','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(150,1,'2018-03-18 04:55:09','2018-03-18 04:55:09','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n		<p style=\"text-align: center; font-size: 12px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong><br /> <strong>            By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 04:55:09','2018-03-18 04:55:09','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(151,1,'2018-03-18 04:57:44','2018-03-18 04:57:44','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n		<p style=\"text-align: center; font-size: 12px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong><br /> <strong>            By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 04:57:44','2018-03-18 04:57:44','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(154,1,'2018-03-18 05:03:16','2018-03-18 05:03:16','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n		<p style=\"text-align: center; font-size: 12px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong><br /> <strong>            By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 05:03:16','2018-03-18 05:03:16','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(153,1,'2018-03-18 05:02:22','2018-03-18 05:02:22','','Agenda1','','inherit','open','closed','','agenda1','','','2018-03-18 05:02:22','2018-03-18 05:02:22','',0,'http://moto-noto.com/wp-content/uploads/2018/03/Agenda1.png',0,'attachment','image/png',0),(155,1,'2018-03-18 05:03:54','2018-03-18 05:03:54','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n		<p style=\"text-align: center; font-size: 12px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong><br /> <strong>            By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 05:03:54','2018-03-18 05:03:54','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(156,1,'2018-03-18 05:09:15','2018-03-18 05:09:15','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n												Toggle #1					\n					<p>I am item content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n												Toggle #2					\n					<p>I am item content. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.</p>\n		<p style=\"text-align: center; font-size: 12px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong><br /> <strong>            By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 05:09:15','2018-03-18 05:09:15','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(157,1,'2018-03-18 05:11:04','2018-03-18 05:11:04','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n												Toggle #1					\n					<p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n		<p style=\"text-align: center; font-size: 12px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong><br /> <strong>            By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 05:11:04','2018-03-18 05:11:04','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(159,1,'2018-03-18 05:13:39','2018-03-18 05:13:39','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n		<p style=\"text-align: center; font-size: 12px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong><br /> <strong>            By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 05:13:39','2018-03-18 05:13:39','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(158,1,'2018-03-18 05:12:33','2018-03-18 05:12:33','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n		<p style=\"text-align: center; font-size: 12px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong><br /> <strong>            By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 05:12:33','2018-03-18 05:12:33','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(160,1,'2018-03-18 05:14:50','2018-03-18 05:14:50','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong>\n<strong>            By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 05:14:50','2018-03-18 05:14:50','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(162,1,'2018-03-18 05:51:35','2018-03-18 05:51:35','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong>\n<strong>            By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 05:51:35','2018-03-18 05:51:35','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(163,1,'2018-03-18 05:51:56','2018-03-18 05:51:56','<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','','private','closed','closed','','wpforms-preview','','','2018-03-18 05:51:56','2018-03-18 05:51:56','',0,'http://moto-noto.com/wpforms-preview/',0,'page','',0),(164,1,'2018-03-18 05:57:12','2018-03-18 05:57:12','{\"id\":\"164\",\"field_id\":3,\"fields\":[{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},{\"id\":\"2\",\"type\":\"textarea\",\"label\":\"Comment or Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}],\"settings\":{\"form_title\":\"Contact Me\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"lornaaline@prodigy.net\",\"subject\":\"Moto-Noto: Contact Me form\",\"sender_name\":\"{field_id=\\\"0\\\"}\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"Thanks for contacting me! I will be in touch with you shortly.\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"13\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"contact\"}}','Contact Me','','publish','closed','closed','','contact-me','','','2018-03-18 07:12:22','2018-03-18 07:12:22','',0,'http://moto-noto.com/?post_type=wpforms&#038;p=164',0,'wpforms','',0),(167,1,'2018-03-18 06:18:36','2018-03-18 06:18:36','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try our best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong>\n<strong>            By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 06:18:36','2018-03-18 06:18:36','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(168,1,'2018-03-18 06:19:24','2018-03-18 06:19:24','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try our best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong>\n<strong>            By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 06:19:24','2018-03-18 06:19:24','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(170,1,'2018-03-18 06:39:01','2018-03-18 06:39:01','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try our best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n                <h3>\n                    Call Me!\n                </h3>\n                <p>(301) 213-9102</p>\n                <h3>\n                    E-Mail Me!\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong>\n<strong>            By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 06:39:01','2018-03-18 06:39:01','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(171,1,'2018-03-18 06:40:23','2018-03-18 06:40:23','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try our best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n                <h3>\n                    Call Me!\n                </h3>\n                <p>(301) 213-9102</p>\n                <h3>\n                    E-Mail Me!\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong>\n<strong>            By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 06:40:23','2018-03-18 06:40:23','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(172,1,'2018-03-18 06:41:12','2018-03-18 06:41:12','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try our best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n                <h3>\n                    Call Me!\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong>\n<strong>            By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 06:41:12','2018-03-18 06:41:12','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(173,1,'2018-03-18 06:46:30','2018-03-18 06:46:30','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try our best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong>\n<strong>            By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 06:46:30','2018-03-18 06:46:30','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(174,1,'2018-03-18 06:50:53','2018-03-18 06:50:53','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try our best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 06:50:53','2018-03-18 06:50:53','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(175,1,'2018-03-18 06:52:05','2018-03-18 06:52:05','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"f8a38b7555\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try our best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 06:52:05','2018-03-18 06:52:05','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(179,1,'2018-03-18 07:16:28','2018-03-18 07:16:28','<h3>MOTO-NOTO</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"e758a2571c\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 07:16:28','2018-03-18 07:16:28','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(180,1,'2018-03-18 07:19:06','2018-03-18 07:19:06','<h3>MOTO-NOTO</h3>		\n		<p>Serving the greater Sarasota, FL area</p>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"e758a2571c\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 07:19:06','2018-03-18 07:19:06','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(181,1,'2018-03-18 07:21:18','2018-03-18 07:21:18','<h3>MOTO-NOTO</h3>		\n		<p><strong>Serving the greater Sarasota, FL area</strong></p>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"e758a2571c\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 07:21:18','2018-03-18 07:21:18','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(182,1,'2018-03-18 14:17:15','2018-03-18 14:17:15','Moto-Noto Logo','MotoLogo','','inherit','open','closed','','motologo','','','2018-03-18 14:17:42','2018-03-18 14:17:42','',0,'http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo.png',0,'attachment','image/png',0),(195,1,'2018-03-18 15:28:10','2018-03-18 15:28:10','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo2.png\" alt=\"MotoLogo2\" title=\"MotoLogo2\"></figure><h3>Serving the greater Sarasota, FL area</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact Lorna, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 15:28:10','2018-03-18 15:28:10','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(187,1,'2018-03-18 14:38:55','2018-03-18 14:38:55','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo-1.png\" alt=\"MotoLogo\" title=\"MotoLogo\"></figure><h3>Serving the greater Sarasota, FL area</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 14:38:55','2018-03-18 14:38:55','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(186,1,'2018-03-18 14:27:43','2018-03-18 14:27:43','<img src=\"http://moto-noto.com/wp-content/uploads/elementor/thumbs/MotoLogo-1-nneqomoh9g2ckbook1htv8readjmppw9omary11yww.png\" title=\"MotoLogo\" alt=\"MotoLogo\" />		\n		<p><strong>Serving the greater Sarasota, FL area</strong></p>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 14:27:43','2018-03-18 14:27:43','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(185,1,'2018-03-18 14:20:33','2018-03-18 14:20:33','Moto-Noto Logo','MotoLogo','','inherit','open','closed','','motologo-2','','','2018-03-18 14:20:49','2018-03-18 14:20:49','',0,'http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo-1.png',0,'attachment','image/png',0),(188,1,'2018-03-18 14:46:50','2018-03-18 14:46:50','Moto-Noto Logo','MotoLogo2','','inherit','open','closed','','motologo2','','','2018-03-18 14:47:04','2018-03-18 14:47:04','',0,'http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo2.png',0,'attachment','image/png',0),(189,1,'2018-03-18 14:50:44','2018-03-18 14:50:44','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo2.png\" alt=\"MotoLogo2\" title=\"MotoLogo2\"></figure><h3>Serving the greater Sarasota, FL area</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts.I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 14:50:44','2018-03-18 14:50:44','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(190,1,'2018-03-18 15:25:24','2018-03-18 15:25:24','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo2.png\" alt=\"MotoLogo2\" title=\"MotoLogo2\"></figure><h3>Serving the greater Sarasota, FL area</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the state of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 15:25:24','2018-03-18 15:25:24','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(191,1,'2018-03-18 15:25:40','2018-03-18 15:25:40','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo2.png\" alt=\"MotoLogo2\" title=\"MotoLogo2\"></figure><h3>Serving the greater Sarasota, FL area</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 15:25:40','2018-03-18 15:25:40','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(192,1,'2018-03-18 15:26:10','2018-03-18 15:26:10','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo2.png\" alt=\"MotoLogo2\" title=\"MotoLogo2\"></figure><h3>Serving the greater Sarasota, FL area</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 15:26:10','2018-03-18 15:26:10','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(193,1,'2018-03-18 15:26:14','2018-03-18 15:26:14','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo2.png\" alt=\"MotoLogo2\" title=\"MotoLogo2\"></figure><h3>Serving the greater Sarasota, FL area</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to these:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 15:26:14','2018-03-18 15:26:14','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(194,1,'2018-03-18 15:26:49','2018-03-18 15:26:49','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo2.png\" alt=\"MotoLogo2\" title=\"MotoLogo2\"></figure><h3>Serving the greater Sarasota, FL area</h3>		\n			<h2>What set me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, Lorna, by e-mail or by calling me with the information below:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 15:26:49','2018-03-18 15:26:49','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(196,1,'2018-03-18 15:28:30','2018-03-18 15:28:30','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo2.png\" alt=\"MotoLogo2\" title=\"MotoLogo2\"></figure><h3>Serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact Lorna, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 15:28:30','2018-03-18 15:28:30','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(197,1,'2018-03-18 15:30:12','2018-03-18 15:30:12','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo2.png\" alt=\"MotoLogo2\" title=\"MotoLogo2\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact Lorna, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 15:30:12','2018-03-18 15:30:12','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(198,1,'2018-03-18 15:43:39','2018-03-18 15:43:39','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo2.png\" alt=\"MotoLogo2\" title=\"MotoLogo2\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact Lorna, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 15:43:39','2018-03-18 15:43:39','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(199,1,'2018-03-18 15:44:16','2018-03-18 15:44:16','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo2.png\" alt=\"MotoLogo2\" title=\"MotoLogo2\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact Lorna, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 15:44:16','2018-03-18 15:44:16','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(200,1,'2018-03-18 15:49:55','2018-03-18 15:49:55','Moto-Noto Logo','MotoLogo3','','inherit','open','closed','','motologo3','','','2018-03-18 15:50:13','2018-03-18 15:50:13','',0,'http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3.png',0,'attachment','image/png',0),(204,1,'2018-03-18 15:59:09','2018-03-18 15:59:09','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-1.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact Lorna, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 15:59:09','2018-03-18 15:59:09','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(202,1,'2018-03-18 15:56:05','2018-03-18 15:56:05','Moto-Noto Logo','MotoLogo3','','inherit','open','closed','','motologo3-2','','','2018-03-18 15:56:27','2018-03-18 15:56:27','',0,'http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-1.png',0,'attachment','image/png',0),(205,1,'2018-03-18 16:02:51','2018-03-18 16:02:51','Moto-Noto Logo','MotoLogo3','','inherit','open','closed','','motologo3-3','','','2018-03-18 16:03:07','2018-03-18 16:03:07','',0,'http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png',0,'attachment','image/png',0),(206,1,'2018-03-18 16:03:15','2018-03-18 16:03:15','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo-150x150.png\" alt=\"snapdocsLogo\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact Lorna, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 16:03:15','2018-03-18 16:03:15','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(207,1,'2018-03-18 16:08:11','2018-03-18 16:08:11','','snapdocsLogo2','','inherit','open','closed','','snapdocslogo2','','','2018-03-18 16:08:31','2018-03-18 16:08:31','',0,'http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2.png',0,'attachment','image/png',0),(222,1,'2018-03-20 12:42:33','2018-03-20 12:42:33','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 12:42:33','2018-03-20 12:42:33','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(208,1,'2018-03-18 16:08:59','2018-03-18 16:08:59','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact Lorna, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 16:08:59','2018-03-18 16:08:59','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(210,1,'2018-03-18 18:02:45','2018-03-18 18:02:45','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact Lorna, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 18:02:45','2018-03-18 18:02:45','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(211,1,'2018-03-18 18:08:17','2018-03-18 18:08:17','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact Lorna, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 18:08:17','2018-03-18 18:08:17','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(212,1,'2018-03-18 18:14:40','2018-03-18 18:14:40','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact Lorna, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 18:14:40','2018-03-18 18:14:40','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(213,1,'2018-03-18 18:15:39','2018-03-18 18:15:39','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact Lorna, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 18:15:39','2018-03-18 18:15:39','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(214,1,'2018-03-18 18:15:47','2018-03-18 18:15:47','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact Lorna, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 18:15:47','2018-03-18 18:15:47','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(215,1,'2018-03-18 18:21:16','2018-03-18 18:21:16','Moto-Noto Car','MN-logo-car','','inherit','open','closed','','mn-logo-car','','','2018-03-18 18:21:29','2018-03-18 18:21:29','',0,'http://moto-noto.com/wp-content/uploads/2018/03/MN-logo-car.png',0,'attachment','image/png',0),(216,1,'2018-03-18 18:21:35','2018-03-18 18:21:35','http://moto-noto.com/wp-content/uploads/2018/03/cropped-MN-logo-car.png','cropped-MN-logo-car.png','','inherit','open','closed','','cropped-mn-logo-car-png','','','2018-03-18 18:21:35','2018-03-18 18:21:35','',0,'http://moto-noto.com/wp-content/uploads/2018/03/cropped-MN-logo-car.png',0,'attachment','image/png',0),(218,1,'2018-03-18 18:30:19','2018-03-18 18:30:19','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact Lorna, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 18:30:19','2018-03-18 18:30:19','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(220,1,'2018-03-18 18:35:56','2018-03-18 18:35:56','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"8fb46fbe73\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact Lorna, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:lornaaline@prodigy.net\">\n                </a>\n                <h3>\n                    <a href=\"mailto:lornaaline@prodigy.net\" >E-Mail Me!</a>\n                </h3>\n                <p>lornaaline@prodigy.net</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-18 18:35:56','2018-03-18 18:35:56','',13,'http://moto-noto.com/2018/03/18/13-revision-v1/',0,'revision','',0),(223,1,'2018-03-20 12:44:15','2018-03-20 12:44:15','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 12:44:15','2018-03-20 12:44:15','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(224,1,'2018-03-20 12:44:39','2018-03-20 12:44:39','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 12:44:39','2018-03-20 12:44:39','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(225,1,'2018-03-20 12:44:59','2018-03-20 12:44:59','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 12:44:59','2018-03-20 12:44:59','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(226,1,'2018-03-20 12:47:05','2018-03-20 12:47:05','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 12:47:05','2018-03-20 12:47:05','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(228,1,'2018-03-20 12:54:46','2018-03-20 12:54:46','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 12:54:46','2018-03-20 12:54:46','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(227,1,'2018-03-20 12:52:22','2018-03-20 12:52:22','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n			<h2>Add Your Heading Text Here</h2>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 12:52:22','2018-03-20 12:52:22','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(229,1,'2018-03-20 12:57:37','2018-03-20 12:57:37','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 12:57:37','2018-03-20 12:57:37','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(231,1,'2018-03-20 13:01:35','2018-03-20 13:01:35','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3><p>(Sarasota, Manatee, and western DeSoto counties and by appointments)</p>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>(301) 213-9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 13:01:35','2018-03-20 13:01:35','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(233,1,'2018-03-20 13:05:17','2018-03-20 13:05:17','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3><p>(Sarasota, Manatee, and western DeSoto counties and by appointments)</p>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>301.213.9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 13:05:17','2018-03-20 13:05:17','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(234,1,'2018-03-20 13:07:10','2018-03-20 13:07:10','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3><p>(Sarasota, Manatee, and western DeSoto counties and by appointments)</p>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>301.213.9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 13:07:10','2018-03-20 13:07:10','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(235,1,'2018-03-20 13:10:24','0000-00-00 00:00:00','','Main Header','','draft','closed','closed','','','','','2018-03-20 13:10:24','2018-03-20 13:10:24','',0,'http://moto-noto.com/?post_type=elementor-hf&#038;p=235',0,'elementor-hf','',0),(236,1,'2018-03-20 13:24:21','2018-03-20 13:24:21','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3><p>(Sarasota, Manatee, and western DeSoto counties and by appointments)</p>		\n			<h2><a href=\"#\">Testimonials</a></h2>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>301.213.9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 13:24:21','2018-03-20 13:24:21','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(239,1,'2018-03-20 13:26:58','2018-03-20 13:26:58','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3><p>(Sarasota, Manatee, and western DeSoto counties and by appointments)</p>		\n			<h2><a href=\"#testimonialsheader\">Testimonials</a></h2>		\n			<h2>Contact Me</h2>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>301.213.9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 13:26:58','2018-03-20 13:26:58','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(237,1,'2018-03-20 13:25:00','2018-03-20 13:25:00','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3><p>(Sarasota, Manatee, and western DeSoto counties and by appointments)</p>		\n			<h2><a href=\"#testimonialsheader\">Testimonials</a></h2>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>301.213.9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 13:25:00','2018-03-20 13:25:00','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(238,1,'2018-03-20 13:25:50','2018-03-20 13:25:50','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3><p>(Sarasota, Manatee, and western DeSoto counties and by appointments)</p>		\n			<h2><a href=\"#testimonialsheader\">Testimonials</a></h2>		\n			<h2>Add Your Heading Text Here</h2>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>301.213.9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 13:25:50','2018-03-20 13:25:50','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(240,1,'2018-03-20 13:27:26','2018-03-20 13:27:26','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3><p>(Sarasota, Manatee, and western DeSoto counties and by appointments)</p>		\n			<h2><a href=\"#testimonialsheader\">Testimonials</a></h2>		\n			<h2><a href=\"#contactme\">Contact Me</a></h2>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>301.213.9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 13:27:26','2018-03-20 13:27:26','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(242,1,'2018-03-20 13:34:41','2018-03-20 13:34:41','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3><p>(Sarasota, Manatee, and western DeSoto counties and by appointments)</p>		\n			<h2><a href=\"#testimonialsheader\">TESTIMONIALS</a></h2>		\n			<h2><a href=\"#contactme\">CONTACT ME</a></h2>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>301.213.9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 13:34:41','2018-03-20 13:34:41','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(243,1,'2018-03-20 13:35:21','2018-03-20 13:35:21','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3><p>(Sarasota, Manatee, and western DeSoto counties and by appointments)</p>		\n			<h2><a href=\"#testimonialsheader\">TESTIMONIALS</a></h2>		\n			<h2><a href=\"#contactme\">CONTACT ME</a></h2>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>301.213.9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 13:35:21','2018-03-20 13:35:21','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(244,1,'2018-03-20 13:35:56','2018-03-20 13:35:56','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3><p>(Sarasota, Manatee, and western DeSoto counties and by appointments)</p>		\n			<h2><a href=\"#testimonialsheader\">TESTIMONIALS</a></h2>		\n			<h2><a href=\"#contactme\">CONTACT ME</a></h2>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>301.213.9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 13:35:56','2018-03-20 13:35:56','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(245,1,'2018-03-20 13:37:46','2018-03-20 13:37:46','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3><p>(Sarasota, Manatee, and western DeSoto counties and by appointments)</p>		\n			<h2><a href=\"#testimonialsheader\">TESTIMONIALS</a></h2>		\n			<h2><a href=\"#contactme\">CONTACT ME</a></h2>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>301.213.9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 13:37:46','2018-03-20 13:37:46','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(246,1,'2018-03-20 13:38:18','2018-03-20 13:38:18','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3><p>(Sarasota, Manatee, and western DeSoto counties and by appointments)</p>		\n			<h2><a href=\"#testimonialsheader\">TESTIMONIALS</a></h2>		\n			<h2><a href=\"#contactme\">CONTACT ME</a></h2>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>301.213.9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 13:38:18','2018-03-20 13:38:18','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(247,1,'2018-03-20 13:41:20','2018-03-20 13:41:20','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3><p>(Sarasota, Manatee, and western DeSoto counties and by appointments)</p>		\n			<h2><a href=\"#testimonialsheader\">TESTIMONIALS</a></h2>		\n			<h2><a href=\"#contactme\">CONTACT ME</a></h2>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:3012139102\">\n                </a>\n                <h3>\n                    <a href=\"tel:3012139102\" >Call Me!</a>\n                </h3>\n                <p>301.213.9102</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 13:41:20','2018-03-20 13:41:20','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(249,1,'2018-03-20 14:05:57','2018-03-20 14:05:57','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3><p>(Sarasota, Manatee, and western DeSoto counties and by appointments)</p>		\n			<h2><a href=\"#testimonialsheader\">TESTIMONIALS</a></h2>		\n			<h2><a href=\"#contactme\">CONTACT ME</a></h2>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to, refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:9414471258\">\n                </a>\n                <h3>\n                    <a href=\"tel:9414471258\" >Call Me!</a>\n                </h3>\n                <p>941.447.1258</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 14:05:57','2018-03-20 14:05:57','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(251,0,'2018-03-20 14:11:22','2018-03-20 14:11:22','','selfImage.JPG','','inherit','open','closed','','selfimage-jpg','','','2018-03-20 14:11:22','2018-03-20 14:11:22','',0,'http://moto-noto.com/wp-content/uploads/2018/03/selfImage.jpg',0,'attachment','image/jpeg',0),(253,1,'2018-03-20 14:16:39','2018-03-20 14:16:39','Thank you for providing me with exceptional service the day of my closing. You really went above and beyond. I don’t know of any notary that would get documents notarized in such a short time frame. You showed up at the office in less than 40 minutes. Without you, I don’t think I would have been able to close the deal in a timely fashion. I will recommend you to my family, friends, and colleagues.','Timely Service','','inherit','closed','closed','','136-revision-v1','','','2018-03-20 14:16:39','2018-03-20 14:16:39','',136,'http://moto-noto.com/2018/03/20/136-revision-v1/',0,'revision','',0),(254,1,'2018-03-20 14:19:17','2018-03-20 14:19:17','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3><p>(Sarasota, Manatee, and western DeSoto counties and by appointments)</p>		\n			<h2><a href=\"#testimonialsheader\">TESTIMONIALS</a></h2>		\n			<h2><a href=\"#contactme\">CONTACT ME</a></h2>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to: refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:9414471258\">\n                </a>\n                <h3>\n                    <a href=\"tel:9414471258\" >Call Me!</a>\n                </h3>\n                <p>941.447.1258</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 14:19:17','2018-03-20 14:19:17','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0),(255,1,'2018-03-20 14:20:40','2018-03-20 14:20:40','<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/MotoLogo3-2.png\" alt=\"MotoLogo3\" title=\"MotoLogo3\"></figure><h3>Mobile Notary Public serving the greater Sarasota, FL area</h3><p>(Sarasota, Manatee, and western DeSoto counties and by appointment)</p>		\n			<h2><a href=\"#testimonialsheader\">TESTIMONIALS</a></h2>		\n			<h2><a href=\"#contactme\">CONTACT ME</a></h2>		\n			<h2>What sets me apart</h2>		\n			<h3>- Experience Matters -</h3>		\n			<p>I have over 30 years of Sr. Paralegal and Real Estate Paralegal experience. I am a Mobile Certified TRID Signing Agent with extensive knowledge and hands-on experience in various closing scenarios including, but not limited to: refinances, reverse mortgages, HELOC\'s, sale/purchase, loan modifications and much more. I am certified for Private Wealth closings, and certified with the majority of banks, lenders and mortgage companies with their specific closing packages. I provide my clients with top-notch services with all types of notarial acts. I am committed to providing efficient and prompt professional services to each and every one of MY clients, and Your clients</p>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_member_badge-150x150.png\" alt=\"nna_member_badge\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/nna_logo2-150x150.png\" alt=\"nna_logo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/American-Society-of-Notaries-150x150.png\" alt=\"American Society of Notaries\" /></figure>			\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/notaryBondedSmall-1.png\" alt=\"notaryBondedSmall\" title=\"notaryBondedSmall\"></figure>NOTARY<p>I\'m happy to assist you with all your notary needs, including performing marriages here in the State of Florida.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/scales-of-justice.png\" alt=\"scales-of-justice\" title=\"scales-of-justice\"></figure>SR. PARALEGAL<p>In need of an expert in legal documentation? I have over 30 years experience in the paralegal field and hold a Certificate in Real Estate Law, I can help.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/VIPlogoSmall.png\" alt=\"VIPlogoSmall\" title=\"VIPlogoSmall\"></figure>PRIVATE WEALTH<p>Need discreet closings or special notarizations? I am certified for such occasions and I\'m extremely discreet. I will maintain your confidentiality.</p>		\n			<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/CertifiedSmall-1.png\" alt=\"CertifiedSmall\" title=\"CertifiedSmall\"></figure>CERTIFIED<p>I\'m certified to handle closings for banks, escrow companies, title companies, lenders, and mortgage companies who require special training for their transactions.</p>		\n			<h3>I work with hundreds of companies, including but not limited to:</h3>		\n				<figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/snapdocsLogo2-150x150.png\" alt=\"snapdocsLogo2\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/closingExchangeAlhpa-150x150.png\" alt=\"closingExchangeAlhpa\" /></figure><figure><img src=\"http://moto-noto.com/wp-content/uploads/2018/03/123notary-1-150x150.png\" alt=\"123notary\" /></figure>			\n		<h1>Testimonials</h1>		\n												Submit Your Own Testimony					\n					<p><p>Required field        </p><form id=\"wpmtst-submission-form\" method=\"post\" enctype=\"multipart/form-data\" autocomplete=\"off\"><input type=\"hidden\" id=\"wpmtst_form_nonce\" name=\"wpmtst_form_nonce\" value=\"bf18615f63\" /><input type=\"hidden\" name=\"_wp_http_referer\" value=\"/wp-admin/admin-ajax.php\" /><input type=\"hidden\" name=\"action\" value=\"wpmtst_form\"><input type=\"hidden\" name=\"form_id\" value=\"1\"><input type=\"hidden\" name=\"default_category\" value=\"\"><input type=\"hidden\" name=\"category\" value=\"\"><label for=\"wpmtst_client_name\">Full Name</label><input id=\"wpmtst_client_name\" type=\"text\" name=\"client_name\"  value=\"\"   required tabindex=\"0\">What is your full name?<label for=\"wpmtst_email\">Email</label><input id=\"wpmtst_email\" type=\"email\" name=\"email\"  value=\"\"   required tabindex=\"0\">What is your email address?<label for=\"wpmtst_company_name\">Company Name</label><input id=\"wpmtst_company_name\" type=\"text\" name=\"company_name\"  value=\"\"   tabindex=\"0\">What is your company name?<label for=\"wpmtst_company_website\">Company Website</label><input id=\"wpmtst_company_website\" type=\"url\" name=\"company_website\"  value=\"\"   tabindex=\"0\">Does your company have a website?<label for=\"wpmtst_post_title\">Heading</label><input id=\"wpmtst_post_title\" type=\"text\" name=\"post_title\"  value=\"\"   tabindex=\"0\">A headline for your testimonial.<label for=\"wpmtst_post_content\">Testimonial</label><textarea id=\"wpmtst_post_content\" name=\"post_content\"  required  tabindex=\"0\"></textarea>What do you think about us?<label for=\"wpmtst_featured_image\">Photo</label><input id=\"wpmtst_featured_image\" type=\"file\" name=\"featured_image\" tabindex=\"0\">Would you like to include a photo?<label for=\"wpmtst_captcha\">Captcha</label><noscript><iframe src=\"https://www.google.com/recaptcha/api/fallback?k=6LeXHE0UAAAAAG0EDgSYppFqCgo-_c5aV4D_OPz6\" frameborder=\"0\" scrolling=\"no\" style=\"width: 302px; height:422px; border-style: none;\"></iframe><textarea id=\"g-recaptcha-response\" name=\"g-recaptcha-response\" style=\"width: 250px !important; height: 40px !important; border: 1px solid #c1c1c1 !important; margin: 10px 25px !important; padding: 0px !important; resize: none !important;\"></textarea></noscript><label><input type=\"submit\" id=\"wpmtst_submit_testimonial\" name=\"wpmtst_submit_testimonial\" value=\"Add Testimonial\" tabindex=\"0\"></label></form>\n</p>\n			<h2>Contact Me</h2>		\n			<h3>Please use the contact form below, if you have any general questions or requests about my services.\nI will try my best to respond back to you within 24 hours.</h3>		\n			<h2>Contact me, by e-mail or by calling:</h2>		\n                <a href=\"tel:9414471258\">\n                </a>\n                <h3>\n                    <a href=\"tel:9414471258\" >Call Me!</a>\n                </h3>\n                <p>941.447.1258</p>\n                <a href=\"mailto:info@moto-noto.com\">\n                </a>\n                <h3>\n                    <a href=\"mailto:info@moto-noto.com\" >E-Mail Me!</a>\n                </h3>\n                <p>info@moto-noto.com</p>\n		<p style=\"text-align: center; font-size: 14px;\"><strong>Copyright © 2018 by:  <a href=\"http://www.negronmultiservices.com\">Negron Multi-Services, llc</a></strong></p><p style=\"text-align: center; font-size: 14px;\"><strong>By:  <a href=\"http://www.negronmultiservices.com\">Rob Negron</a></strong></p>','Home','','inherit','closed','closed','','13-revision-v1','','','2018-03-20 14:20:40','2018-03-20 14:20:40','',13,'http://moto-noto.com/2018/03/20/13-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wpct_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpct_strong_views`
--

DROP TABLE IF EXISTS `wpct_strong_views`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_strong_views` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `value` text COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_strong_views`
--

LOCK TABLES `wpct_strong_views` WRITE;
/*!40000 ALTER TABLE `wpct_strong_views` DISABLE KEYS */;
INSERT INTO `wpct_strong_views` VALUES (1,'TESTIMONIALS','a:45:{s:10:\"background\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"type\";s:0:\"\";s:6:\"preset\";s:0:\"\";s:9:\"gradient1\";s:0:\"\";s:9:\"gradient2\";s:0:\"\";}s:8:\"category\";s:3:\"all\";s:5:\"class\";s:0:\"\";s:14:\"client_section\";a:2:{i:0;a:4:{s:5:\"field\";s:11:\"client_name\";s:4:\"type\";s:4:\"text\";s:6:\"before\";s:0:\"\";s:5:\"class\";s:16:\"testimonial-name\";}i:1;a:8:{s:5:\"field\";s:12:\"company_name\";s:4:\"type\";s:4:\"link\";s:6:\"before\";s:0:\"\";s:5:\"class\";s:19:\"testimonial-company\";s:3:\"url\";s:15:\"company_website\";s:9:\"link_text\";s:5:\"value\";s:16:\"link_text_custom\";s:0:\"\";s:7:\"new_tab\";i:1;}}s:12:\"column_count\";s:1:\"2\";s:15:\"container_class\";s:0:\"\";s:14:\"container_data\";s:0:\"\";s:7:\"content\";s:6:\"entire\";s:5:\"count\";i:-1;s:12:\"divi_builder\";i:0;s:14:\"excerpt_length\";i:55;s:10:\"font-color\";a:2:{s:4:\"type\";s:0:\"\";s:5:\"color\";s:7:\"#8224e3\";}s:9:\"form_ajax\";i:0;s:7:\"form_id\";s:1:\"1\";s:8:\"gravatar\";s:2:\"no\";s:2:\"id\";i:0;s:6:\"layout\";s:0:\"\";s:8:\"lightbox\";i:0;s:14:\"lightbox_class\";s:0:\"\";s:4:\"mode\";s:9:\"slideshow\";s:14:\"more_full_post\";s:1:\"0\";s:9:\"more_page\";b:0;s:14:\"more_page_hook\";s:18:\"wpmtst_view_footer\";s:12:\"more_page_id\";i:0;s:14:\"more_page_text\";s:22:\"Read more testimonials\";s:9:\"more_post\";i:0;s:18:\"more_post_ellipsis\";i:1;s:14:\"more_post_text\";s:9:\"Read more\";s:4:\"note\";s:0:\"\";s:5:\"order\";s:6:\"oldest\";s:4:\"page\";s:0:\"\";s:10:\"pagination\";i:0;s:19:\"pagination_settings\";a:11:{s:4:\"type\";s:6:\"simple\";s:3:\"nav\";s:5:\"after\";s:8:\"per_page\";i:5;s:8:\"show_all\";b:0;s:8:\"end_size\";i:1;s:8:\"mid_size\";i:2;s:9:\"prev_next\";b:1;s:9:\"prev_text\";s:16:\"&laquo; Previous\";s:9:\"next_text\";s:12:\"Next &raquo;\";s:18:\"before_page_number\";s:0:\"\";s:17:\"after_page_number\";s:0:\"\";}s:18:\"slideshow_settings\";a:14:{s:12:\"adapt_height\";i:1;s:18:\"adapt_height_speed\";d:0.5;s:10:\"auto_hover\";i:1;s:10:\"auto_start\";i:1;s:14:\"controls_style\";s:7:\"buttons\";s:13:\"controls_type\";s:5:\"sides\";s:6:\"effect\";s:10:\"horizontal\";s:12:\"nav_position\";s:6:\"inside\";s:11:\"pager_style\";s:7:\"buttons\";s:10:\"pager_type\";s:4:\"none\";s:5:\"pause\";d:6;s:5:\"speed\";d:1;s:18:\"stop_auto_on_click\";i:1;s:7:\"stretch\";i:0;}s:8:\"template\";s:7:\"default\";s:17:\"template_settings\";a:3:{s:7:\"default\";a:3:{s:14:\"image_position\";s:4:\"left\";s:5:\"theme\";s:5:\"light\";s:6:\"quotes\";s:2:\"on\";}s:12:\"small-widget\";a:1:{s:14:\"image_position\";s:4:\"left\";}s:12:\"default-form\";a:1:{s:5:\"theme\";s:5:\"light\";}}s:9:\"thumbnail\";i:1;s:16:\"thumbnail_height\";s:0:\"\";s:14:\"thumbnail_size\";s:14:\"shop_thumbnail\";s:15:\"thumbnail_width\";s:0:\"\";s:5:\"title\";i:1;s:10:\"title_link\";i:0;s:18:\"use_default_length\";s:1:\"1\";s:16:\"use_default_more\";s:1:\"0\";s:4:\"view\";s:0:\"\";}'),(2,'Add Testimonial','a:45:{s:10:\"background\";a:5:{s:5:\"color\";s:0:\"\";s:4:\"type\";s:0:\"\";s:6:\"preset\";s:0:\"\";s:9:\"gradient1\";s:0:\"\";s:9:\"gradient2\";s:0:\"\";}s:8:\"category\";s:0:\"\";s:5:\"class\";s:0:\"\";s:14:\"client_section\";a:2:{i:0;a:4:{s:5:\"field\";s:11:\"client_name\";s:4:\"type\";s:4:\"text\";s:6:\"before\";s:0:\"\";s:5:\"class\";s:16:\"testimonial-name\";}i:1;a:8:{s:5:\"field\";s:12:\"company_name\";s:4:\"type\";s:4:\"link\";s:6:\"before\";s:0:\"\";s:5:\"class\";s:19:\"testimonial-company\";s:3:\"url\";s:15:\"company_website\";s:9:\"link_text\";s:5:\"value\";s:16:\"link_text_custom\";s:0:\"\";s:7:\"new_tab\";i:1;}}s:12:\"column_count\";s:1:\"2\";s:15:\"container_class\";s:0:\"\";s:14:\"container_data\";s:0:\"\";s:7:\"content\";s:6:\"entire\";s:5:\"count\";i:-1;s:12:\"divi_builder\";i:0;s:14:\"excerpt_length\";i:55;s:10:\"font-color\";a:2:{s:4:\"type\";s:0:\"\";s:5:\"color\";s:0:\"\";}s:9:\"form_ajax\";i:0;s:7:\"form_id\";s:1:\"1\";s:8:\"gravatar\";s:2:\"no\";s:2:\"id\";i:0;s:6:\"layout\";s:0:\"\";s:8:\"lightbox\";i:0;s:14:\"lightbox_class\";s:0:\"\";s:4:\"mode\";s:4:\"form\";s:14:\"more_full_post\";s:1:\"0\";s:9:\"more_page\";b:0;s:14:\"more_page_hook\";s:18:\"wpmtst_view_footer\";s:12:\"more_page_id\";i:0;s:14:\"more_page_text\";s:22:\"Read more testimonials\";s:9:\"more_post\";i:0;s:18:\"more_post_ellipsis\";i:1;s:14:\"more_post_text\";s:9:\"Read more\";s:4:\"note\";s:0:\"\";s:5:\"order\";s:6:\"oldest\";s:4:\"page\";s:0:\"\";s:10:\"pagination\";i:0;s:19:\"pagination_settings\";a:11:{s:4:\"type\";s:6:\"simple\";s:3:\"nav\";s:5:\"after\";s:8:\"per_page\";i:5;s:8:\"show_all\";b:0;s:8:\"end_size\";i:1;s:8:\"mid_size\";i:2;s:9:\"prev_next\";b:1;s:9:\"prev_text\";s:16:\"&laquo; Previous\";s:9:\"next_text\";s:12:\"Next &raquo;\";s:18:\"before_page_number\";s:0:\"\";s:17:\"after_page_number\";s:0:\"\";}s:18:\"slideshow_settings\";a:14:{s:12:\"adapt_height\";i:1;s:18:\"adapt_height_speed\";d:0.5;s:10:\"auto_hover\";i:1;s:10:\"auto_start\";i:1;s:14:\"controls_style\";s:7:\"buttons\";s:13:\"controls_type\";s:4:\"none\";s:6:\"effect\";s:4:\"fade\";s:12:\"nav_position\";s:6:\"inside\";s:11:\"pager_style\";s:7:\"buttons\";s:10:\"pager_type\";s:4:\"none\";s:5:\"pause\";d:8;s:5:\"speed\";d:1;s:18:\"stop_auto_on_click\";i:1;s:7:\"stretch\";i:0;}s:8:\"template\";s:12:\"default-form\";s:17:\"template_settings\";a:3:{s:7:\"default\";a:3:{s:14:\"image_position\";s:4:\"left\";s:5:\"theme\";s:5:\"light\";s:6:\"quotes\";s:2:\"on\";}s:12:\"small-widget\";a:1:{s:14:\"image_position\";s:4:\"left\";}s:12:\"default-form\";a:1:{s:5:\"theme\";s:5:\"light\";}}s:9:\"thumbnail\";i:1;s:16:\"thumbnail_height\";s:0:\"\";s:14:\"thumbnail_size\";s:9:\"thumbnail\";s:15:\"thumbnail_width\";s:0:\"\";s:5:\"title\";i:1;s:10:\"title_link\";i:0;s:18:\"use_default_length\";s:1:\"1\";s:16:\"use_default_more\";s:1:\"0\";s:4:\"view\";s:0:\"\";}');
/*!40000 ALTER TABLE `wpct_strong_views` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpct_term_relationships`
--

DROP TABLE IF EXISTS `wpct_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_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 `wpct_term_relationships`
--

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

--
-- Table structure for table `wpct_term_taxonomy`
--

DROP TABLE IF EXISTS `wpct_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_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=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_term_taxonomy`
--

LOCK TABLES `wpct_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpct_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpct_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'product_type','',0,0),(3,3,'product_type','',0,0),(4,4,'product_type','',0,0),(5,5,'product_type','',0,0),(6,6,'product_visibility','',0,0),(7,7,'product_visibility','',0,0),(8,8,'product_visibility','',0,0),(9,9,'product_visibility','',0,0),(10,10,'product_visibility','',0,0),(11,11,'product_visibility','',0,0),(12,12,'product_visibility','',0,0),(13,13,'product_visibility','',0,0),(14,14,'product_visibility','',0,0),(15,15,'product_cat','',0,0),(16,16,'nav_menu','',0,2);
/*!40000 ALTER TABLE `wpct_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpct_termmeta`
--

DROP TABLE IF EXISTS `wpct_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_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 `wpct_termmeta`
--

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

--
-- Table structure for table `wpct_terms`
--

DROP TABLE IF EXISTS `wpct_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_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=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_terms`
--

LOCK TABLES `wpct_terms` WRITE;
/*!40000 ALTER TABLE `wpct_terms` DISABLE KEYS */;
INSERT INTO `wpct_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'simple','simple',0),(3,'grouped','grouped',0),(4,'variable','variable',0),(5,'external','external',0),(6,'exclude-from-search','exclude-from-search',0),(7,'exclude-from-catalog','exclude-from-catalog',0),(8,'featured','featured',0),(9,'outofstock','outofstock',0),(10,'rated-1','rated-1',0),(11,'rated-2','rated-2',0),(12,'rated-3','rated-3',0),(13,'rated-4','rated-4',0),(14,'rated-5','rated-5',0),(15,'Uncategorized','uncategorized',0),(16,'Main','main',0);
/*!40000 ALTER TABLE `wpct_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpct_th_popup`
--

DROP TABLE IF EXISTS `wpct_th_popup`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_th_popup` (
  `ID` int(10) NOT NULL AUTO_INCREMENT,
  `popupData` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `settings` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `popupDate` datetime NOT NULL,
  PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_th_popup`
--

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

--
-- Table structure for table `wpct_usermeta`
--

DROP TABLE IF EXISTS `wpct_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_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=103 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_usermeta`
--

LOCK TABLES `wpct_usermeta` WRITE;
/*!40000 ALTER TABLE `wpct_usermeta` DISABLE KEYS */;
INSERT INTO `wpct_usermeta` VALUES (1,1,'nickname','rnegron07'),(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,'wpct_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wpct_user_level','10'),(14,1,'dismissed_wp_pointers','theme_editor_notice'),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"a1ef071b2f28be53ddf9b9f537077801441e49fb2e9de93ef2a87e654ce50f26\";a:4:{s:10:\"expiration\";i:1538850228;s:2:\"ip\";s:13:\"47.199.69.179\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/11.1.2 Safari/605.1.15\";s:5:\"login\";i:1538677428;}}'),(17,1,'wpct_user-settings','libraryContent=browse&editor=tinymce&advImgDetails=show&hidetb=0&editor_plain_text_paste_warning=1&editor_expand=off'),(18,1,'wpct_user-settings-time','1521355996'),(19,1,'wpct_dashboard_quick_press_last_post_id','258'),(20,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"47.199.69.0\";}'),(21,1,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(22,1,'dismissed_install_notice','1'),(23,1,'nav_menu_recently_edited','16'),(24,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\";}'),(25,1,'metaboxhidden_nav-menus','a:7:{i:0;s:21:\"add-post-type-product\";i:1;s:29:\"add-post-type-wpm-testimonial\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-post_format\";i:4;s:15:\"add-product_cat\";i:5;s:15:\"add-product_tag\";i:6;s:28:\"add-wpm-testimonial-category\";}'),(86,4,'billing_email','lornaaline@prodigy.net'),(85,4,'billing_phone',''),(84,4,'billing_state',''),(83,4,'billing_country',''),(82,4,'billing_postcode',''),(75,4,'dismissed_wp_pointers',''),(74,4,'wpct_user_level','0'),(73,4,'wpct_capabilities','a:1:{s:6:\"client\";b:1;}'),(71,4,'show_admin_bar_front','true'),(72,4,'locale',''),(70,4,'use_ssl','0'),(69,4,'admin_color','fresh'),(76,4,'billing_first_name','Lorna'),(77,4,'billing_last_name','Sammoury'),(78,4,'billing_company',''),(79,4,'billing_address_1',''),(80,4,'billing_address_2',''),(81,4,'billing_city',''),(68,4,'comment_shortcuts','false'),(67,4,'syntax_highlighting','true'),(66,4,'rich_editing','true'),(63,4,'first_name','Lorna'),(64,4,'last_name','Sammoury'),(65,4,'description',''),(62,4,'nickname','Lorna'),(87,4,'shipping_first_name',''),(88,4,'shipping_last_name',''),(89,4,'shipping_company',''),(90,4,'shipping_address_1',''),(91,4,'shipping_address_2',''),(92,4,'shipping_city',''),(93,4,'shipping_postcode',''),(94,4,'shipping_country',''),(95,4,'shipping_state',''),(96,4,'last_update','1521555807'),(97,4,'session_tokens','a:1:{s:64:\"28db9406c6e2b3e28e176962b39c4ba3ca6e1a9be8556bfde4cb6fd67f9c0c2c\";a:4:{s:10:\"expiration\";i:1521728735;s:2:\"ip\";s:12:\"47.197.93.62\";s:2:\"ua\";s:121:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36\";s:5:\"login\";i:1521555935;}}'),(98,4,'wpct_dashboard_quick_press_last_post_id','256'),(99,4,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(100,4,'community-events-location','a:1:{s:2:\"ip\";s:11:\"47.197.93.0\";}'),(101,1,'closedpostboxes_page','a:0:{}'),(102,1,'metaboxhidden_page','a:6:{i:0;s:12:\"revisionsdiv\";i:1;s:10:\"postcustom\";i:2;s:16:\"commentstatusdiv\";i:3;s:11:\"commentsdiv\";i:4;s:7:\"slugdiv\";i:5;s:9:\"authordiv\";}');
/*!40000 ALTER TABLE `wpct_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpct_users`
--

DROP TABLE IF EXISTS `wpct_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_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=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_users`
--

LOCK TABLES `wpct_users` WRITE;
/*!40000 ALTER TABLE `wpct_users` DISABLE KEYS */;
INSERT INTO `wpct_users` VALUES (1,'rnegron07','$P$BdpQDMPgQl/aGdM02MoKiDlitfrQ/e0','rnegron07','admin@moto-noto.com','','2018-03-15 01:21:16','',0,'rnegron07'),(4,'Lorna','$P$Boqk9iH5a5W9rPbkXDQPeX8dTD7/yw.','lorna','lornaaline@prodigy.net','','2018-03-18 15:35:56','1521387356:$P$B09ZbaEEenIRk10pmllwOv8cgDeNDu1',0,'Lorna Sammoury');
/*!40000 ALTER TABLE `wpct_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpct_wc_download_log`
--

DROP TABLE IF EXISTS `wpct_wc_download_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_wc_download_log` (
  `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `permission_id` bigint(20) unsigned NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `user_ip_address` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
  PRIMARY KEY (`download_log_id`),
  KEY `permission_id` (`permission_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_wc_download_log`
--

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

--
-- Table structure for table `wpct_wc_webhooks`
--

DROP TABLE IF EXISTS `wpct_wc_webhooks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_wc_webhooks` (
  `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `status` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL,
  `delivery_url` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `secret` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `topic` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `api_version` smallint(4) NOT NULL,
  `failure_count` smallint(10) NOT NULL DEFAULT 0,
  `pending_delivery` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`webhook_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_wc_webhooks`
--

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

--
-- Table structure for table `wpct_woocommerce_api_keys`
--

DROP TABLE IF EXISTS `wpct_woocommerce_api_keys`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_woocommerce_api_keys` (
  `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL,
  `description` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `permissions` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_key` char(64) COLLATE utf8mb4_unicode_ci NOT NULL,
  `consumer_secret` char(43) COLLATE utf8mb4_unicode_ci NOT NULL,
  `nonces` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `truncated_key` char(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `last_access` datetime DEFAULT NULL,
  PRIMARY KEY (`key_id`),
  KEY `consumer_key` (`consumer_key`),
  KEY `consumer_secret` (`consumer_secret`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_woocommerce_api_keys`
--

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

--
-- Table structure for table `wpct_woocommerce_attribute_taxonomies`
--

DROP TABLE IF EXISTS `wpct_woocommerce_attribute_taxonomies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_woocommerce_attribute_taxonomies` (
  `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `attribute_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_label` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `attribute_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_orderby` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `attribute_public` int(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`attribute_id`),
  KEY `attribute_name` (`attribute_name`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_woocommerce_attribute_taxonomies`
--

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

--
-- Table structure for table `wpct_woocommerce_downloadable_product_permissions`
--

DROP TABLE IF EXISTS `wpct_woocommerce_downloadable_product_permissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_woocommerce_downloadable_product_permissions` (
  `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `download_id` varchar(36) COLLATE utf8mb4_unicode_ci NOT NULL,
  `product_id` bigint(20) unsigned NOT NULL,
  `order_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `order_key` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_email` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned DEFAULT NULL,
  `downloads_remaining` varchar(9) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access_expires` datetime DEFAULT NULL,
  `download_count` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`permission_id`),
  KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`),
  KEY `download_order_product` (`download_id`,`order_id`,`product_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_woocommerce_downloadable_product_permissions`
--

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

--
-- Table structure for table `wpct_woocommerce_log`
--

DROP TABLE IF EXISTS `wpct_woocommerce_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_woocommerce_log` (
  `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `timestamp` datetime NOT NULL,
  `level` smallint(4) NOT NULL,
  `source` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `context` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`log_id`),
  KEY `level` (`level`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_woocommerce_log`
--

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

--
-- Table structure for table `wpct_woocommerce_order_itemmeta`
--

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

--
-- Dumping data for table `wpct_woocommerce_order_itemmeta`
--

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

--
-- Table structure for table `wpct_woocommerce_order_items`
--

DROP TABLE IF EXISTS `wpct_woocommerce_order_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_woocommerce_order_items` (
  `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `order_item_name` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `order_item_type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `order_id` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`order_item_id`),
  KEY `order_id` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_woocommerce_order_items`
--

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

--
-- Table structure for table `wpct_woocommerce_payment_tokenmeta`
--

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

--
-- Dumping data for table `wpct_woocommerce_payment_tokenmeta`
--

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

--
-- Table structure for table `wpct_woocommerce_payment_tokens`
--

DROP TABLE IF EXISTS `wpct_woocommerce_payment_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_woocommerce_payment_tokens` (
  `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `gateway_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `token` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `type` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  PRIMARY KEY (`token_id`),
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_woocommerce_payment_tokens`
--

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

--
-- Table structure for table `wpct_woocommerce_sessions`
--

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

--
-- Dumping data for table `wpct_woocommerce_sessions`
--

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

--
-- Table structure for table `wpct_woocommerce_shipping_zone_locations`
--

DROP TABLE IF EXISTS `wpct_woocommerce_shipping_zone_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_woocommerce_shipping_zone_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_id` bigint(20) unsigned NOT NULL,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `location_id` (`location_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_woocommerce_shipping_zone_locations`
--

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

--
-- Table structure for table `wpct_woocommerce_shipping_zone_methods`
--

DROP TABLE IF EXISTS `wpct_woocommerce_shipping_zone_methods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_woocommerce_shipping_zone_methods` (
  `zone_id` bigint(20) unsigned NOT NULL,
  `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `method_id` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `method_order` bigint(20) unsigned NOT NULL,
  `is_enabled` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`instance_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_woocommerce_shipping_zone_methods`
--

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

--
-- Table structure for table `wpct_woocommerce_shipping_zones`
--

DROP TABLE IF EXISTS `wpct_woocommerce_shipping_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_woocommerce_shipping_zones` (
  `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `zone_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `zone_order` bigint(20) unsigned NOT NULL,
  PRIMARY KEY (`zone_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_woocommerce_shipping_zones`
--

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

--
-- Table structure for table `wpct_woocommerce_tax_rate_locations`
--

DROP TABLE IF EXISTS `wpct_woocommerce_tax_rate_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_woocommerce_tax_rate_locations` (
  `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `location_code` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
  `tax_rate_id` bigint(20) unsigned NOT NULL,
  `location_type` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`location_id`),
  KEY `tax_rate_id` (`tax_rate_id`),
  KEY `location_type_code` (`location_type`(10),`location_code`(20))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_woocommerce_tax_rate_locations`
--

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

--
-- Table structure for table `wpct_woocommerce_tax_rates`
--

DROP TABLE IF EXISTS `wpct_woocommerce_tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_woocommerce_tax_rates` (
  `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `tax_rate_country` varchar(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_state` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `tax_rate_priority` bigint(20) unsigned NOT NULL,
  `tax_rate_compound` int(1) NOT NULL DEFAULT 0,
  `tax_rate_shipping` int(1) NOT NULL DEFAULT 1,
  `tax_rate_order` bigint(20) unsigned NOT NULL,
  `tax_rate_class` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`tax_rate_id`),
  KEY `tax_rate_country` (`tax_rate_country`),
  KEY `tax_rate_state` (`tax_rate_state`(2)),
  KEY `tax_rate_class` (`tax_rate_class`(10)),
  KEY `tax_rate_priority` (`tax_rate_priority`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpct_woocommerce_tax_rates`
--

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

--
-- Table structure for table `wpct_wpforms_lite`
--

DROP TABLE IF EXISTS `wpct_wpforms_lite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpct_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 `wpct_wpforms_lite`
--

LOCK TABLES `wpct_wpforms_lite` WRITE;
/*!40000 ALTER TABLE `wpct_wpforms_lite` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpct_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-08-07 14:35:21
